window.onload = function() {
	createNotes();
}


function createNotes() {

    showNote=function()
	{
		var id=this.id.replace(/vacature-link-/,'vacature-samenvatting-');
		note=document.getElementById(id);
		note.style.display='block';
		note.style.height='60px';
	}

    hideNote=function()
	{ 
		
		
		var id=this.id.replace(/vacature-link-/,'vacature-samenvatting-');
        note=document.getElementById(id);
		note.style.display='none';
		note.style.height='0px';
		
    }
	
	if (document.getElementById('rightmain')) {
		as=document.getElementById("rightmain").getElementsByTagName('a');
	
	//as2=document.getElementById("boeken").getElementsByTagName('img');
	

	    for(i=0;i<as.length;i++)
		{
			
				as[i].onmouseover=showNote;
				as[i].onmouseout=hideNote;
	       
	    }
	}
	
}
