//configure the paths of the images, plus corresponding target links -as many images/links as you want
slideshowimages("../images/nzltextban.gif","../images/sxtextban.gif","../images/sysban2.gif")
slideshowlinks("http://www.bannedsystems.co.uk/banned/system.htm","http://www.bannedsystems.co.uk/lottery/system.htm","http://www.bannedsystems.co.uk/systems/mainpage.htm")

//configure the speed of the slideshow, in miliseconds
var slideshowspeed=4000

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

//