// JavaScript Document
$(".schaduw").dropShadow({left: 3, top: 3, color: "#000000", swap: false});

var ie6     = navigator.appVersion.indexOf('MSIE 6') > 0;

if (ie6)
	{
		if (document.all && document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule)
			document.styleSheets[0].addRule('.hotfix', 'behavior: url(/css/iepngfix.htc)');			
	}
	
// Onload event koppelen
if (window.attachEvent){
	window.attachEvent("onload", initMenu)}
else	{
	window.addEventListener("load", initMenu, false)}




function initMenu() { 
 
   if (document.all&&document.getElementById) { 
   // Main menu
      navRootTotal = document.getElementById("sitemenu");
	  navRoot = navRootTotal.getElementsByTagName("li"); 
      for (i=0; i<navRoot.length; i++) { 
         node = navRoot[i]; 
         if (node.nodeName=="LI") { 
            node.onmouseover=function() { 
               this.className+=" over"; 
            } 
            node.onmouseout=function() { 
               this.className=this.className.replace(" over", ""); 
            } 
         } 
      } 
  }
}

