
var gallery = new Array();
gallery[0] = "so-1.jpg"
gallery[1] = "so-2.jpg"
gallery[2] = "so-3.jpg"
gallery[3] = "so-4.jpg"
gallery[4] = "so-5.jpg"
gallery[5] = "so-6.jpg"
gallery[6] = "so-7.jpg"
gallery[7] = "so-8.jpg"
gallery[8] = "so-9.jpg"
gallery[9] = "so-10.jpg"
gallery[10] = "so-11.jpg"
gallery[11] = "so-12.jpg"
gallery[12] = "so-13.jpg"

arr = new Array();
var verzoegerung=3000;
var bildnummer=0;
var count = gallery.length;
for(var i=0; i<count; i++){
arr[i] = new Array();
        arr[i] = new Image();
        arr[i].src = "Fotoshow\\" +  gallery[i];
}

function durchlauf()
{
document.bild.src=arr[bildnummer].src;
bildnummer++;
             if(bildnummer >= count)
             {
              bildnummer=0;
             }

setTimeout('durchlauf()', verzoegerung);
}

