var ie5=(document.getElementById && document.all); 
var ns6=(document.getElementById && !document.all); 

stap = 1 //stappen in %, 
tussentijd = 50 //tussentijd in milliseconden 
//Dit kun je allemaal zelf verder instellen 

dichtheid = 100 
function overlopen(){ 
if(document.getElementById){ 
document.getElementById('afbeelding1').style.visibility="visible"; 
imgs = document.getElementById('afbeelding2'); 
opacity = dichtheid+stap; 
dichtheid = opacity; 
setTimeout('overlopen()',tussentijd); 
if(opacity>100 || opacity<0){ 
stap=-stap; 
} 
if(ie5){ 
imgs.style.filter="alpha(opacity=0)"; 
imgs.filters.alpha.opacity = opacity; 
} 
if(ns6){ 
imgs.style.MozOpacity = 0 + '%'; 
imgs.style.MozOpacity = opacity + '%'; 
} 
} 
} 
onload=overlopen;
