
//preload the images to prevent part image display
var curimg=0
var x
for (x in galleryarray)
{
document.write("<img src='images/slideshow/" + galleryarray[x] + "' alt='triathletes in action' />");
}
//roatate the images
function rotateimages(){
document.getElementById("slideshow").setAttribute("src", "images/slideshow/"+galleryarray[curimg])
curimg=(curimg<galleryarray.length-1)? curimg+1 : 0
}
window.onload=function(){
//set the delay between rotation
setInterval("rotateimages()", 3000)
}
