//configure the paths of the images, plus corresponding target links
slideshowimages("slideshowpics/IMG_1176.JPG","slideshowpics/023_IMG_1354.JPG","slideshowpics/218_IMG_1394.JPG","slideshowpics/0525_IMG_1717.JPG","slideshowpics/0595_IMG_1806.JPG","slideshowpics/0724_IMG_1935.JPG","slideshowpics/0839_IMG_2108.JPG","slideshowpics/0876_IMG_2169.JPG","slideshowpics/IMG_2214.JPG","slideshowpics/IMG_2304.JPG")
slideshowlinks("http://www.kitandjane.ca/rw-merlin/merlinmain.html","http://www.kitandjane.ca/india/sasac_pictures.html","http://www.kitandjane.ca/india/sasac_pictures.html","http://www.kitandjane.ca/india_trip_shows/turuk_web/index.html","http://www.kitandjane.ca/india_trip_shows/kalimpong_web/index.html","http://www.kitandjane.ca/india_trip_shows/lepchavillage_web/index.html","http://www.kitandjane.ca/india_trip_shows/kazirangaelephant_web/index.html","http://www.kitandjane.ca/india_trip_shows/kaziranga2_web/index.html","http://www.kitandjane.ca/india_trip_shows/calcutta_web/index.html","http://www.kitandjane.ca/india_trip_shows/varanasi1_web/index.html")

//configure the speed of the slideshow, in milliseconds
var slideshowspeed=3000

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()

//