<!--
//specify interval between slide (in mili seconds)
var slidespeed=2000
//specify images
var slideimages=new Array(

"images/index_slideshow_01.gif",
"images/index_slideshow_02.gif",
"images/index_slideshow_03.gif",
"images/index_slideshow_04.gif",
"images/index_slideshow_05.gif",
"images/index_slideshow_06.gif"

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

"whale_watching_fishing_trips_and_more.html",
"whale_watching_fishing_trips_and_more.html",
"whale_watching_fishing_trips_and_more.html",
"whale_watching_fishing_trips_and_more.html",
"whale_watching_fishing_trips_and_more.html",
"whale_watching_fishing_trips_and_more.html"

)

var imageholder=new Array()
var ie55=window.createPopup
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
window.location=slidelinks[whichlink]
}

//-->