//configure the paths of the images, plus corresponding target links
slideshowimages("pic/add_depo_1.gif", "pic/add_depo_2.gif", "pic/add_depo_3.gif")

//configure the speed of the slideshow, in miliseconds
var slideshowspeed=1300
var whichimage=0

function slideit(){
  if (!document.images)
    return
    document.images.slide.src=slideimages[whichimage].src
 

  if (whichimage<slideimages.length-1)
    whichimage++
  else
    whichimage=0
    setTimeout("slideit()",slideshowspeed)
}
slideit()
