// JavaScript Document
homeArray = new Array("/SiteImages/home1.jpg","/SiteImages/home2.jpg","/SiteImages/home3.jpg","/SiteImages/home4.jpg","/SiteImages/home5.jpg","/SiteImages/home6.jpg");
function getImage(){
	if(document.images){
var index=Math.floor(Math.random()*homeArray.length);
document.images.lexecon.src = homeArray[index];
	}
}
