/* Rotate 4 images Wolke3_5.jpg to Wolke3_8.jpg
 */
var delay = 4200;	// in ms
var imageNum = 1;

// Preload animation images
var theImages = new Array();
for (i=5; i<9; i++) {
	theImages[i-5] = new Image();
	theImages[i-5].src = "pics/blaueLeisten/Wolke3-" + i + ".jpg";
//	if (i == 5) document.write("Testausgabe - eingelesene Bildnamen:<BR>");
//	document.write("theImages[" + (i-5) + "] = '" + theImages[i-5].src + "'<BR>");
}

// Rotierfunktion
function animate() {
	document.animation.src = theImages[imageNum].src;
	imageNum++;
	if (imageNum > 3) imageNum = 0;
}

