//variable that will increment through the images
var step=1
function slideit(){
//if browser does not support the image object, exit.
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src")
if (step<3) /* YOU NEED TO CHANGE THE NUMERICAL VALUE HERE IF YOU ADD OR REMOVE IMAGES FROM THE SLIDESHOW */
step++
else
step=1
//call function "slideit()" every 3.0 seconds
setTimeout("slideit()",4000)
}
slideit()