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/mappe07.gif"
photos[1]="images/mappe06.gif"
photos[2]="images/mappe05.gif"
photos[3]="images/mappe04.gif"
photos[4]="images/mappe03.gif"
photos[5]="images/mappe02.gif"
photos[6]="images/mappe01.gif"

function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which]
document.frmzoom.B3.value =  which+1;
}
else
{
window.status=''
which=6;
document.images.photoslider.src=photos[which]
document.frmzoom.B3.value =  which+1;
}
}

function forward(){
if (which < photos.length-1){
which++
document.images.photoslider.src=photos[which]
document.frmzoom.B3.value =  which+1;

}
else
{
window.status=''
which=0;
document.images.photoslider.src=photos[which]
document.frmzoom.B3.value =  which+1;
}
}

