var timeDelay = 3;
var Pix = new Array
("./images/tourist-info/playaarco.jpg"
,"./images/tourist-info/cataratauvita2.jpg"
,"./images/tourist-info/playaventanas2_von_stefan.jpg"
,"./images/tourist-info/kajak_von_stefan.jpg"
,"./images/tourist-info/hoehle_von_stefan.jpg"
,"./images/tourist-info/ultralight.jpg"
,"./images/tourist-info/wal1.jpg"
,"./images/tourist-info/canopy2.jpg"
,"./images/tourist-info/espheras.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];
}

