images = new Array();
images[0] = "images/home_photo01.jpg"
images[1] = "images/home_photo02.jpg"
images[2] = "images/home_photo03.jpg"
images[3] = "images/home_photo04.jpg"
images[4] = "images/home_photo05.jpg"
function RandElement(IList)
	{
	return(IList[Math.round(Math.random()*(IList.length-1))]);
	}