function randomImg()
{
images = new Array(5);
			images[0] = "<img src='img/banner-x/1.jpg' alt='' style='width:865px; height:270px;' />";
			images[1] = "<img src='img/banner-x/5.jpg' alt='' style='width:865px; height:270px;' />";
			images[2] = "<img src='img/banner-x/3.jpg' alt='' style='width:865px; height:270px;' />";
			images[3] = "<img src='img/banner-x/4.jpg' alt='' style='width:865px; height:270px;' />";
			images[4] = "<img src='img/banner-x/6.jpg' alt='' style='width:865px; height:270px;' />";
			index = Math.floor(Math.random() * images.length);
			document.write(images[index]);
}

