<!-- begin

var photos=new Array()
var which=0
photos[0]="graphics/location/map01.gif"
photos[1]="graphics/location/map02.gif"
photos[2]="graphics/location/map03.gif"
photos[3]="graphics/location/map04.gif"
photos[4]="graphics/location/map05.gif"
photos[5]="graphics/location/map06.gif"
photos[6]="graphics/location/map07.gif"

//do NOT edit pass this line
var preloadedimages=new Array()
for (i=0;i<photos.length;i++){
preloadedimages[i]=new Image()
preloadedimages[i].src=photos[i]
}

function statusbar(){
window.status="Image "+(which+1)+" of "+photos.length
}


function backward(){
  if (which>0){
  which--
  document.images.photoslider.src=photos[which]
  statusbar()
  }
}

function forward(){
  if (which<photos.length-1){
  which++
  document.images.photoslider.src=photos[which]
  statusbar()
  }
}

//  End -->
