function preLoad(){
	imageArray = new Array();
	for (i=1; i<=8; i++){
		imageArray[i] = new Image();
		imageArray[i].src = "images/homephoto" + i + ".jpg";
	}
	i=1;
	return true;
}
function changePhoto(){
	i = (i==8) ? 1:i+1;
	if (document.getElementById){
		photoObj = document.getElementById("bigphoto");
		imageObj = photoObj.getElementsByTagName("img");
		imageObj[0].src = imageArray[i].src;
	}
}
function startUp(){
	timerID1 = setTimeout("preLoad();",1);
	timerID2 = setTimeout("startMarquee();",1);
	timerID3 = setInterval("moveMarquee();",100);
	timerID4 = setInterval("changePhoto();",4000);
}
onload = startUp;