//configure the paths of the images, plus corresponding target links
slideshowimages("imgs/random/img_menu01.jpg","imgs/random/img_menu02.jpg","imgs/random/img_menu03.jpg","imgs/random/img_menu04.jpg","imgs/random/img_menu05.jpg","imgs/random/img_menu06.jpg","imgs/random/img_menu07.jpg","imgs/random/img_menu08.jpg","imgs/random/img_menu09.jpg","imgs/random/img_menu010.jpg","imgs/random/img_menu011.jpg")
slideshowlinks()

//configure the speed of the slideshow, in miliseconds
var slideshowspeed=4000

var whichlink=0
var whichimage=0
function slideit(){
if (!document.images)
return
if (document.images.slide)
{
document.images.slide.src=slideimages[whichimage].src
}
whichlink=whichimage
if (whichimage<slideimages.length-1)
whichimage++
else
whichimage=0
setTimeout("slideit()",slideshowspeed)
}
slideit()