var weeklyphotos=new Array()

weeklyphotos[0]='images_circulaire/page1.jpg'
weeklyphotos[1]='images_circulaire/page2.jpg'
weeklyphotos[2]='images_circulaire/page3.jpg'
weeklyphotos[3]='images_circulaire/page4.jpg'
//weeklyphotos[4]='images_circulaire/page5.jpg'
//weeklyphotos[5]='images_circulaire/page6.jpg'
var which2=0

function backward2(){
if (which2>0){
window.status=''
which2--
document.images.photoslider2.src=weeklyphotos[which2]
}
else
{
which2=(weeklyphotos.length-1)
document.images.photoslider2.src=weeklyphotos[which2]
}
}

function forward2(){
if (which2<weeklyphotos.length-1){
which2++
document.images.photoslider2.src=weeklyphotos[which2]
}
else
{
which2=0
document.images.photoslider2.src=weeklyphotos[which2]
}
}
