function voorladen(image) 
{
this[1]= new Image()
this[1].src = image 
return this
} 

foto=new voorladen(1,'images/amelandcdgroothomepage.jpg');   

function maakLayer() { 
document.write('<DIV id="fotoLayer"  style="position: absolute; left:800px ; top:135px ; visibility: hidden; z-index: 10" onMouseOver="toonLayer(fotoLayer)" onMouseOut="verbergLayer(fotoLayer)">');
document.write('<a href="http://www.zen.nl/winkel.html" > <IMG src="images/amelandcdgroothomepage.jpg" id="ZenZadenGroot" border="0" align="right" width="376" height="350"> ');
document.write('</DIV>');
}
 
var naam = new Image();function toonLayer(naam) {
naam.style.visibility = "visible"; 
 
}
function verbergLayer(naam) {
naam.style.visibility = "hidden"; 

}




             
