function randomImg()
{
images = new Array(9);
			images[0] = "<img src='images/bannerA.jpg' style='width:853px; height:175px;' />";
			images[1] = "<img src='images/bannerB.jpg' style='width:853px; height:175px;' />";
			images[2] = "<img src='images/bannerC.jpg' style='width:853px; height:175px;' />";
			images[3] = "<img src='images/bannerD.jpg' style='width:853px; height:175px;' />";
			images[4] = "<img src='images/bannerE.jpg' style='width:853px; height:175px;' />";
			images[5] = "<img src='images/bannerF.jpg' style='width:853px; height:175px;' />";
			images[6] = "<img src='images/bannerG.jpg' style='width:853px; height:175px;' />";
			images[7] = "<img src='images/bannerH.jpg' style='width:853px; height:175px;' />";
			images[8] = "<img src='images/bannerI.jpg' style='width:853px; height:175px;' />";
			index = Math.floor(Math.random() * images.length);
			document.write(images[index]);
}


