window.setTimeout("reloadImages()", 4000); var images = ["/slideshow/aloe.jpg","/slideshow/facemask.jpg","/slideshow/flower_.jpg","/slideshow/kosmetika.png","/slideshow/Ladys_gents.jpg","/slideshow/meals.jpg","/slideshow/omega.jpg"]; var height = ["","","","","","",""]; var width = []; var timeouts = ["4000","4000","4000","4000","4000","4000","4000"]; function reloadImages(){ var currentID = document.imageForm.imageID.value; currentID++; if(currentID == (timeouts.length +1)){ currentID = 0; document.imageForm.imageID.value = currentID; }else{ document.imageForm.imageID.value = currentID; } if(images[0].length > 1){ document.imagemain.src = images[currentID]; document.imageForm.imageLinkWidth.value = width[currentID]; document.imageForm.imageLinkHeight.value = height[currentID]; window.setTimeout("reloadImages()", timeouts[currentID]); } }