// JavaScript Document
<!--

//*****************************************
// Blending Image Slide Show Script- 
// © Dynamic Drive (www.dynamicdrive.com)
// For full source code, visit http://www.dynamicdrive.com/
//*****************************************

//specify interval between slide (in mili seconds)
var slidespeed=4000

//specify images
var slideimages=new Array(
"slideshow/main/1.jpg",
"slideshow/main/2.jpg",
"slideshow/main/3.jpg",
"slideshow/main/4.jpg",
"slideshow/main/5.jpg",
"slideshow/main/6.jpg",
"slideshow/main/7.jpg",
"slideshow/main/8.jpg",
"slideshow/main/9.jpg",
"slideshow/main/10.jpg",
"slideshow/main/11.jpg",
"slideshow/main/12.jpg",
"slideshow/main/13.jpg",
"slideshow/main/14.jpg",
"slideshow/main/15.jpg"

)

//specify corresponding links
var slidelinks=new Array(
"slideshow/main/large/1.jpg",
"slideshow/main/large/2.jpg",
"slideshow/main/large/3.jpg",
"slideshow/main/large/4.jpg",
"slideshow/main/large/5.jpg",
"slideshow/main/large/6.jpg",
"slideshow/main/large/7.jpg",
"slideshow/main/large/8.jpg",
"slideshow/main/large/9.jpg",
"slideshow/main/large/10.jpg",
"slideshow/main/large/11.jpg",
"slideshow/main/large/12.jpg",
"slideshow/main/large/13.jpg",
"slideshow/main/large/14.jpg",
"slideshow/main/large/15.jpg"
)

var newwindow=1 //open links in new window? 1=yes, 0=no

var imageholder=new Array()
var ie=document.all
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
if (newwindow)
window.open(slidelinks[whichlink])
else
window.location=slidelinks[whichlink]
}

//-->