<!--

//*****************************************
// 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("images/suemarshall/1.jpg","images/suemarshall/2.jpg","images/suemarshall/3.jpg","images/suemarshall/4.jpg","images/suemarshall/5.jpg","images/suemarshall/6.jpg","images/suemarshall/7.jpg","images/suemarshall/8.jpg","images/suemarshall/9.jpg","images/suemarshall/10.jpg","images/suemarshall/11.jpg","images/suemarshall/12.jpg","images/suemarshall/13.jpg","images/suemarshall/14.jpg","images/suemarshall/15.jpg","images/suemarshall/16.jpg","images/suemarshall/17.jpg","images/suemarshall/18.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]
}

//-->
