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]="map_cl.gif"
photos[1]="map_zoom1.gif"
photos[2]="map_zoom2.gif"
photos[3]="map_zoom3.gif"
photos[4]="map_zoom4.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'
}

