	function randomHeaderImage(){
		images = new Array(3);
			images[0] = "<img src='/sites/all/themes/tapestry/images/lf-header-01.jpg' />";
			images[1] = "<img src='/sites/all/themes/tapestry/images/lf-header-02.jpg' />";
			images[2] = "<img src='/sites/all/themes/tapestry/images/lf-header-03.jpg' />";
index = Math.floor(Math.random() * images.length);
		document.write(images[index]);
	}

