var timeDelay = 3;
var Pix = new Array
("../images/ranchomorgens.jpg"
,"../images/rancho_terrasse.jpg"
,"../images/haupthaus.jpg"
,"../images/main_building3.jpg"
,"../images/main_building2.jpg"
,"../images/haengematte.jpg"
,"../images/poolview.jpg"
,"../images/pooljump_von_stefan.jpg"
,"../images/pool_von_martin.jpg"
,"../images/sonnenaufgang_von_stefan.jpg"
,"../images/regenview_von_stefan.jpg"
,"../images/dschungelview_von_stefan.jpg"
,"../images/abendstimmung_von_stefan.jpg"
,"../images/steinfigur.jpg"
,"../images/eingang.jpg"
,"../images/dekoschale.jpg"
);
var gesamtanzahl = Pix.length;
timeDelay *= 1000;
var i = 0;

function startBilder() {
this.runId = setInterval("slideshow()", timeDelay);
//alert("startBilder" + timeDelay + ", this.runId=" + this.runId);
}

function stopBilder() {
if (this.runId)
 clearTimeout(this.runId);
// alert("stopBilder, this.runId=" + this.runId);
 this.runId = null;
}

function slideshow() {
i++;
if (i >= (gesamtanzahl)) {i = 0;}
document["ChangingPix"].src = Pix[i];
}
