var timeDelay = 3;
var Pix = new Array
("../images/reittour.jpg"
,"../images/pferde_am_strand.jpg"
,"../images/don_lulo_1.jpg"
,"../images/don_lulo_2.jpg"
);
var gesamtanzahl = Pix.length;
timeDelay *= 1000;
var i = 0;

function startBilder() {
this.runId = setInterval("slideshow()", timeDelay);
}

function stopBilder() {
if (this.runId)
 clearTimeout(this.runId);
this.runId = null;
}

function slideshow() {
i++;
if (i >= (gesamtanzahl)) {i = 0;}
document["ChangingPix"].src = Pix[i];
}

