var timeDelay = 3;
var Pix = new Array
("../images/maroon-chested-ground-dove.jpg"
,"../images/blauer_vogel_von_stefan.jpg"
,"../images/cusinga_von_martin.jpg"
,"../images/kolibri2.jpg"
,"../images/specht.jpg"
,"../images/crested_guan.jpg"
,"../images/mininest.jpg"
,"../images/great_kiskadee.jpg"
,"../images/white-fronted-parrot.jpg"
,"../images/fluegel-trocknen.jpg"
,"../images/unknown-bird.jpg"
,"../images/kolibri3.jpg"
,"../images/unknown-bird2.jpg"
,"../images/parrot.jpg"
,"../images/cusinga_von_stefan.jpg"
,"../images/2tucane_von_stefan.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];
}
