var photos=new Array()
var which=0

photos[0]="sele5.jpg"
photos[1]="sele6.jpg"
photos[2]="sele7.jpg"
photos[3]="sele8.jpg"
photos[4]="sele9.jpg"
photos[5]="sele10.jpg"
photos[6]="sele11.jpg"
photos[7]="sele12.jpg"
photos[8]="sele13.jpg"
photos[9]="sele14.jpg"
photos[10]="sele15.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'
}