var time = 5000 
var bild = new Array();
bild[0] = "images/seite1/6.jpg"; 
bild[1] = "images/seite1/michael1.jpg";
bild[2] = "images/seite1/1.jpg";
bild[3] = "images/seite1/2.jpg";
bild[4] = "images/seite1/3.jpg";
bild[5] = "images/seite1/4.jpg";
bild[6] = "images/seite1/5.jpg";

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