
//<![CDATA[

// Flexible Image Slideshow- By JavaScriptKit.com (http://www.javascriptkit.com)
// For this and over 400+ free scripts, visit JavaScript Kit- http://www.javascriptkit.com/
// This notice must stay intact for use
     
var photos=new Array()
var which=0

/*Change the below variables to reference your own images. You may have as many images in the slider as you wish*/
photos[0]="images/1copy.gif"
photos[1]="images/2copy.gif"
photos[2]="images/3copy.gif"
photos[3]="images/4copy.gif"
photos[4]="images/5copy.gif"
photos[5]="images/6copy.gif"
photos[6]="images/7copy.gif"
photos[7]="images/8copy.gif"
photos[8]="images/9copy.gif"


function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which]
}
}

function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which]
}
else window.status='End of gallery'
}
//]]>


