//*****************************************
// 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=2000

//specify images
var slideimages=new Array
(
"./images/Dancerblend1/img01.jpg",
"./images/Dancerblend1/img02.jpg",
"./images/Dancerblend1/img03.jpg",
"./images/Dancerblend1/img04.jpg",
"./images/Dancerblend1/img05.jpg",
"./images/Dancerblend1/img06.jpg",
"./images/Dancerblend1/img07.jpg",
"./images/Dancerblend1/img08.jpg",
"./images/Dancerblend1/img09.jpg",
"./images/Dancerblend1/img10.jpg",
"./images/Dancerblend1/img11.jpg",
"./images/Dancerblend1/img12.jpg",
"./images/Dancerblend1/img13.jpg",
"./images/Dancerblend1/img14.jpg",
"./images/Dancerblend1/img15.jpg",
"./images/Dancerblend1/img16.jpg",
"./images/Dancerblend1/img17.jpg",
"./images/Dancerblend1/img18.jpg",
"./images/Dancerblend1/img19.jpg",
"./images/Dancerblend1/img20.jpg",
"./images/Dancerblend1/img21.jpg",
"./images/Dancerblend1/img22.jpg",
"./images/Dancerblend1/img23.jpg",
"./images/Dancerblend1/img24.jpg",
"./images/Dancerblend1/img25.jpg"
)

//specify corresponding links
var slidelinks=new Array("")

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]
}

