﻿//configure the paths of the images, plus corresponding target links
slideshowimages("images/AdamsSupplyDallas.gif",
"images/legs.jpg",
"images/star.jpg",
"images/fwba.jpg",
"images/water.jpg",
"images/beanitos175.jpg",
"images/canariLogo_stacked175.jpg",
"images/designnet.jpg",
"images/YellowRose175.jpg",
"images/plumbing.jpg",
"images/rivet_logo-175.jpg")
slideshowlinks("")

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

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

