
//*****************************************
// 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=6000

//image size=490x383
//specify images, no comma at end ... put newest at top
var slideimages=new Array(
"http://www.sharonascherlfolkart.com/slideshow/ss_Helping_Gma_In_Her_Garden.jpg",
"http://www.sharonascherlfolkart.com/slideshow/ss_The_Sea_Captains_Return_Home.jpg",
"http://www.sharonascherlfolkart.com/slideshow/ss_Lunch_in_the_Grove.jpg",  
"http://www.sharonascherlfolkart.com/slideshow/ss_Harvest_Moon_Dance.jpg", 
"http://www.sharonascherlfolkart.com/slideshow/ss_Mrs_Pierce_School.jpg"
)

//remember that slides must be uploaded PRIOR to checking index locally
//put the latest painting in the holding position on index

//specify corresponding links, no comma at end ... put newest at top
var slidelinks=new Array(
"http://www.sharonascherlfolkart.com/gallery-44_Helping_Gma_In_Her_Garden.html",
"http://www.sharonascherlfolkart.com/gallery-41_Sea_Captains_Return_Home.html", 
"http://www.sharonascherlfolkart.com/gallery-40_Lunch_In_the_Grove.html",  
"http://www.sharonascherlfolkart.com/gallery-45_Harvest_Moon_Dance.html",
"http://www.sharonascherlfolkart.com/gallery-43_Mrs_Pierce_School.html"
)

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]
}

