var timeDelay = 6;
var PixSrc = new Array ("/images/front/Number 4 in the Nation.jpg" ,"/images/front/Number 4 in the Nation.jpg" ,"/images/front/Number 4 in the Nation.jpg" ,"/images/front/Number 4 in the Nation.jpg", "/images/front/Number 4 in the Nation.jpg" );
var howMany = PixSrc.length;
var Pix = new Array(howMany);
for (i = 0; i < howMany; i++) {
	myImage = new Image();
	myImage.src = PixSrc[i];
	Pix[i] = myImage;
}
timeDelay *= 1000;
var PicCurrentNum = 0; 
setInterval("slideshow()", timeDelay);

function slideshow() {
	PicCurrentNum++;
	if (PicCurrentNum == howMany) {
		PicCurrentNum = 0;
	}
	document.images["rotate"].src = Pix[PicCurrentNum].src;
}



