/******************************************************************************
This JS file contains the IMAGES for slideshow.
******************************************************************************/
//match image to link here of the images to corresponding target links

slideshowimages
(
"../images/fe_logo_NSTAFFING.gif", // 1
"../images/fe_logo_NASSOC.gif", // 2
"../images/fe_logo_NTECHNO.gif", // 3
//"../images/fe_logo_google.gif", // 4
"../images/fe_logo_NELEGAL.gif", // 5
"../images/fe_logo_NSEARCH.gif" // 6
)

slideshowlinks
(
"../FeaturedEmployer/FeaturedEmployerList.aspx", // 1
"../FeaturedEmployer/FeaturedEmployerList.aspx", // 2
"../FeaturedEmployer/FeaturedEmployerList.aspx", // 3
"../FeaturedEmployer/FeaturedEmployerList.aspx", // 4
"../FeaturedEmployer/FeaturedEmployerList.aspx", // 5
"../FeaturedEmployer/FeaturedEmployerList.aspx" // 6
)

//configure the speed of the slideshow, in miliseconds
var slideshowspeed=2065

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()

