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]="calgary_newmap_1.jpg"
photos[1]="calgary_newmap_2.jpg"
photos[2]="calgary_newmap_3.jpg"
photos[3]="calgary_newmap_4.jpg"
photos[4]="calgary_newmap_5.jpg"


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'
}
