
//*****************************************
// 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=2500

//specify images
var slideimages=new Array("gcapix/ts-copper-pan1.jpg","gcapix/ts-copper-pan2.jpg","gcapix/ts-healthy-food.jpg","gcapix/ts-poached-sole.jpg","gcapix/ts-table-setting.jpg")

//specify corresponding links for each slide
var slidelinks=new Array("http://www.trisansanitizers.com","http://www.trisansanitizers.com","http://www.trisansanitizers.com","http://www.trisansanitizers.com","http://www.trisansanitizers.com")

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]
}

