
var photos=new Array()
var which=0

photos[0]="../fotos/ext_01.jpg"
photos[1]="../fotos/ext_02.jpg"
photos[2]="../fotos/ext_03.jpg"
photos[3]="../fotos/ext_04.jpg"
photos[4]="../fotos/ext_05.jpg"
photos[5]="../fotos/ext_06.jpg"
photos[6]="../fotos/ext_07.jpg"
photos[7]="../fotos/ext_08.jpg"
photos[8]="../fotos/ext_09.jpg"
photos[9]="../fotos/ext_10.jpg"
photos[10]="../fotos/infantil_01.jpg"
photos[11]="../fotos/infantil_02.jpg"
photos[12]="../fotos/terraza_01.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'
}
