var time = 8000
var bild = new Array();
bild[0] = "http://juergenschwab.de/fileadmin/main/postit/pics/01_Home_Post-it_01_021211.jpg";
bild[1] = "http://juergenschwab.de/fileadmin/main/postit/pics/01_Home_Post-it_02_021211.jpg";
bild[2] = "http://juergenschwab.de/fileadmin/main/postit/pics/01_Home_Post-it_03_021211.jpg";
bild[3] = "http://juergenschwab.de/fileadmin/main/postit/pics/01_Home_Post-it_04_021211.jpg";
bild[4] = "http://juergenschwab.de/fileadmin/main/postit/pics/01_Home_Post-it_05_021211.jpg";
 
var narf = "0";

function bildwechseln() {
	document.wechselbild.src = bild[narf];
	narf++;
	if (narf == bild.length) {
		narf = 0;
	}
	setTimeout("bildwechseln()",time);
}

