var the_images = new Array();
			
the_images[0] = new Image();
the_images[0].src = "Images/Photo1_23.JPG";
the_images[6] = new Image();
the_images[6].src = "Images/Photo1_1.JPG";
the_images[1] = new Image();
the_images[1].src = "Images/Photo1_2.JPG";
the_images[2] = new Image();
the_images[2].src = "Images/Photo1_4.JPG";
the_images[3] = new Image();
the_images[3].src = "Images/Photo1_13.JPG";
the_images[4] = new Image();
the_images[4].src = "Images/Photo1_15.JPG";
the_images[5] = new Image();
the_images[5].src = "Images/Photo1_18.JPG";

var the_timeout;
function rotateImage(index)
{
	window.document.my_image.src = the_images[index].src;
	index++;
	if (index >= the_images.length)
	{
		index = 0;
	}
	var the_function_string = "rotateImage(" + index + ");";
	the_timeout = setTimeout(the_function_string, 4000);
}
window.onload = function() {
	rotateImage(0);
}	
