var stap=1
var beeldnr=1
function overvloeier(){
if (!document.images)
return
if (document.all)
slide.filters.blendTrans.apply()
document.images.slide.src=eval("foto"+stap+".src")
if (document.all)
slide.filters.blendTrans.play()
beeldnr=stap
if (stap<4)// aanpassen aan aantal plaatjes
stap++
else
stap=1
setTimeout("overvloeier()",8000)// de tijd tussen twee plaatjes in milliseconden
}
function overgang(){
if (beeldnr==1)
window.location="index.htm"
else if (beeldnr==2)
window.location="index.htm"
else if (beeldnr==3)
window.location="index.htm" 
else if (beeldnr==4)
window.location="index.htm"
 // mogelijk door te nummeren
}
