//configure the paths of the images, plus corresponding target links
slideshowimages1("images/coby-1.jpg","images/coby-2.jpg","images/coby-3.jpg")
//configure the speed of the slideshow, in miliseconds
var slideshowspeed=4500
var whichimage=0

function slideit1(){
if (!document.images)
return
document.images.slide1.src=slideimages1[whichimage].src
if (whichimage<slideimages1.length-1)
whichimage++
else
whichimage=0
setTimeout("slideit1()",slideshowspeed)
}
slideit1()