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/gallery/Premier_League_Derby/MTN_Premier_League_Derby_thumb_01.html"
photos[1]="images/gallery/Premier_League_Derby/MTN_Premier_League_Derby_thumb_02.html"
photos[2]="images/gallery/Premier_League_Derby/MTN_Premier_League_Derby_thumb_03.html"
photos[3]="images/gallery/Premier_League_Derby/MTN_Premier_League_Derby_thumb_04.html"
photos[4]="images/gallery/Premier_League_Derby/MTN_Premier_League_Derby_thumb_05.html"
photos[5]="images/gallery/Premier_League_Derby/MTN_Premier_League_Derby_thumb_06.html"
photos[6]="images/gallery/Premier_League_Derby/MTN_Premier_League_Derby_thumb_07.html"
photos[7]="images/gallery/Premier_League_Derby/MTN_Premier_League_Derby_thumb_08.html"
photos[8]="images/gallery/Premier_League_Derby/MTN_Premier_League_Derby_thumb_09.html"
photos[9]="images/gallery/Premier_League_Derby/MTN_Premier_League_Derby_thumb_10.html"


function show(){
document.images.photoslider.src=photos[which]
}

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'
}

