var timeDelay = 3;
var Pix = new Array
( "../Fotos/hauspoolb.jpg"
, "../Fotos/eingangb.jpg"
, "../Fotos/hausvornb.jpg"
, "../Fotos/multib.jpg"
, "../Fotos/dukanb.jpg"
, "../Fotos/ananasb.jpg"
, "../Fotos/hakenlilieb.jpg"
, "../Fotos/orangenb.jpg"
, "../Fotos/orch1b.jpg"
, "../Fotos/orchgb.jpg"
, "../Fotos/papageib.jpg"
, "../Fotos/perezosob.jpg"
, "../Fotos/puergob.jpg"
, "../Fotos/leguanb.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];
}
