var photo5=new Array()
var which5=0

photo5[0]="exlibris/14_kongres_helsingor-72r/0.png"
photo5[1]="exlibris/14_kongres_helsingor-72r/00-okladka-72r.png"
photo5[2]="exlibris/14_kongres_helsingor-72r/01-wstep-72r.png"
photo5[3]="exlibris/14_kongres_helsingor-72r/10-vagn_clemmensen-72r.png"
photo5[4]="exlibris/14_kongres_helsingor-72r/20-erik_von_deden-71r.png"
photo5[5]="exlibris/14_kongres_helsingor-72r/30-helmer_fogedgaard-72r.png"
photo5[6]="exlibris/14_kongres_helsingor-72r/40-jorgen_vils_pedersen-71r.png"
photo5[7]="exlibris/14_kongres_helsingor-72r/50-edmund_peter-71r.png"
photo5[8]="exlibris/14_kongres_helsingor-72r/60-inge_rodel-72r.png"
photo5[9]="exlibris/14_kongres_helsingor-72r/70-klaus_rodel-71r.png"
photo5[10]="exlibris/14_kongres_helsingor-72r/80-paul_winter-71r.png"
photo5[11]="exlibris/14_kongres_helsingor-72r/98-spis-72r.png"

function backward5(){
if (which5>0){
window.status=''
which5--
document.images.photoslider.src=photo5[which5]
}
}

function forward5(){
if (which5<photo5.length-1){
which5++
document.images.photoslider.src=photo5[which5]
}
else menuEx6()
}


