<!-- 
 
startList = function() { 
        if (document.all&&document.getElementById) {
        	if (document.getElementById("Primary") != null) {
                var navRoot = document.getElementById("Primary"); 
                var childNodes = navRoot.firstChild.firstChild.childNodes;                                 
                for (i=0; i< childNodes.length; i++) {                         
                        node = childNodes[i];
                        if (node.nodeName=="TD" && (node.innerHTML.indexOf("<li") != -1 ||node.innerHTML.indexOf("<LI") != -1)){                              
                            
                            node.onmouseover=function() { 
                            this.className+=" over"; 
                                                            
							/* IE DHTML menu fix (iframe) */
							navnode = this.getElementsByTagName("UL")[0];
																													
							if(document.getElementById("menu_iframe")) {									
							  var iframe = document.getElementById("menu_iframe");
							  var navmenu = document.getElementById(navnode.id);
							  									  
							  if(navmenu != null) {
								iframe.style.top = navmenu.offsetTop + this.offsetTop;										
								iframe.style.left = navmenu.offsetLeft + this.offsetTop;
								iframe.style.width = navmenu.scrollWidth;
								iframe.style.height = navmenu.clientHeight;								
								iframe.style.display = "inline";									
							  }
							}
							/* END FIX */

                            } 
                            node.onmouseout=function() { 
								this.className=this.className.replace(" over", ""); 
								
								/* IE DHTML menu fix (iframe) */
								if(document.getElementById("menu_iframe")) {
								  var iframe = document.getElementById("menu_iframe");
								  iframe.style.display = "none";
								}
								/* END FIX */ 
								    
                            } 
                        } 
                }
            } 
        } 
} 
 
//*********************************** change here ****************************************
//window.onload=startList;  (original)
//window.document.attachEvent( "onload" , startList );   (this did not work)
//startList(); //this works some times :-(
 
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}
addLoadEvent(startList);
 

//*********************************** change here ****************************************
 
//-->