<!--
//configure the paths of the images, plus corresponding target links
slideshowimages("img1.jpg", "img2.gif", "img3.jpg", "img4.jpg", "img5.jpg","img6.jpg", "img7.jpg", "img8.jpg")
slideshowlinks("index.htm")

//configure the speed of the slideshow, in miliseconds
var slideshowspeed=2000
var whichlink=0
var whichimage=0

function slideit(){
  if (!document.images)
    return
    document.images.slide.src=slideimages[whichimage].src
    whichlink=whichimage

  if (whichimage<slideimages.length-1)
    whichimage++
  else
    whichimage=0
    setTimeout("slideit()",slideshowspeed)
}
slideit()
//-->
