var slideimages=new Array()
var slidelinks=new Array()

function slideshowimages(){
for (i=0;i<slideshowimages.arguments.length;i++){
slideimages[i]=new Image()
slideimages[i].src=slideshowimages.arguments[i]
}
}

function slideshowlinks(){
for (i=0;i<slideshowlinks.arguments.length;i++)
slidelinks[i]=slideshowlinks.arguments[i]
}

function gotoshow(){
if (!window.winslide||winslide.closed)
winslide=window.open(slidelinks[whichlink])
else
winslide.location=slidelinks[whichlink]
winslide.focus()
}

//configure the paths of the images, plus corresponding target links
slideshowimages("images/events/pro1.jpg","images/events/pro2.jpg","images/events/pro3.jpg","images/events/pro4.jpg","images/events/pro5.jpg","images/events/pro6.jpg" 
 )
slideshowlinks("images/events/pro1.jpg","images/events/pro2.jpg","images/events/pro3.jpg","images/events/pro4.jpg","images/events/pro5.jpg","images/events/pro6.jpg" )
 
//configure the speed of the slideshow, in miliseconds
var slideshowspeed=2000

var whichlink=0
var whichimage=0

function slideit(){
if (!document.images)
return
slideshowimages()
document.images.slide.src=slideimages[whichimage].src
whichlink=whichimage
if (whichimage<slideimages.length-1)
whichimage++
else
whichimage=0
setTimeout("slideit()",slideshowspeed)
}

slideit()

 