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

//specify images
var slideimages=new Array(
"KingsCanyon/Images/IMG_6005.jpg",
"BBL/Images/IMG_2005_29797.jpg",
"Shasta/Images/IMG_6208.jpg",
"Weather/Images/IMG_2005_23329.jpg",
"BigSur/Images/IMG_0459.jpg",
"Coastline/Images/IMG_8039.jpg",
"Lighthouses/Images/IMG_0021.jpg",
"MonoLake/Images/IMG_6421.jpg",
"Sierras/Images/IMG_6243.jpg",
"Yosemite/Images/IMG_8654.jpg",
"Waterfalls/Images/IMG_5094.jpg",
"Wildlife/Images/IMG_2625.jpg",
"San Francisco/Images/IMG_5753.jpg",
"WildFlowers/Images/IMG_4224.jpg",
"DeathValley/Images/IMG_4422.jpg",
"KingsCanyon/Images/IMG_6065.jpg",
"BBL/Images/IMG_2005_29864.jpg",
"Shasta/Images/IMG_6338.jpg",
"Weather/Images/IMG_2005_27514.jpg",
"BigSur/Images/IMG_0463.jpg",
"Coastline/Images/IMG_0675.jpg",
"Lighthouses/Images/IMG_9918.jpg",
"MonoLake/Images/IMG_6654.jpg",
"Sierras/Images/IMG_8242.jpg",
"Yosemite/Images/IMG_2505.jpg",
"Waterfalls/Images/IMG_8294.jpg",
"Wildlife/Images/IMG_8681.jpg",
"San Francisco/Images/IMG_5771_edited.jpg",
"WildFlowers/Images/IMG_4320.jpg",
"DeathValley/Images/IMG_4545.jpg")


//specify corresponding links
var slidelinks=new Array(
"KingsCanyon/Target3.html",
"BBL/Target1.html",
"Shasta/Target10.html",
"Weather/Target1.html",
"BigSur/Target1.html",
"Coastline/Target2.html",
"Lighthouses/Target14.html",
"MonoLake/Target1.html",
"Sierras/Target1.html",
"Yosemite/Target11.html",
"Waterfalls/Target3.html",
"Wildlife/Target20.html",
"San Francisco/Target6.html",
"WildFlowers/Target6.html",
"DeathValley/Target27.html",
"KingsCanyon/Target16.html",
"BBL/Target21.html",
"Shasta/Target18.html",
"Weather/Target10.html",
"BigSur/Target3.html",
"Coastline/Target15.html",
"Lighthouses/Target7.html",
"MonoLake/Target17.html",
"Sierras/Target32.html",
"Yosemite/Target36.html",
"Yosemite/Target7.html",
"Wildlife/Target5.html",
"San rancisco/Target7.html",
"WildFlowers/Target10.html",
"DeathValley/Target49.html")

var newwindow=0 //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]
}


