// JavaScript Document

<!--

window.onload = rotate;

var thisImg = 0;

function rotate()
{
	var Pics = new Array("images/SneezyWheezy/Photo1.jpg", "images/SneezyWheezy/Photo2.jpg", "images/SneezyWheezy/Photo3.jpg");					 
	
	thisImg++;
	if(thisImg == Pics.length)
	{
		thisImg = 0;
	}
	
	document.getElementById("image").src = Pics[thisImg];
	
	setTimeout(rotate, 3*1000);
}
//-->
