<!--
   var elts;
   var initState, initNav;

   function init() {
      set_P7_autoHide();
      
      switch(initState) {
         case 'top_nav':
            if (initNav) {document.getElementById(initNav).style.backgroundColor = '#006699';}
            break;
         default:
            break;
      }
   }

   sfHover = function() {
      try {
      	var sfEls = document.getElementById("top_nav").getElementsByTagName("LI");
        	for (var i=0; i<sfEls.length; i++) {
	         sfEls[i].onmouseover=function() {this.className+=" sfhover";}
     	   	sfEls[i].onmouseout=function() {this.className=this.className.replace(new RegExp(" sfhover\\b"), "");}
     	   }
      }
      catch (err) {}
   }

   window.onload = init;
   if (window.attachEvent) window.attachEvent("onload", sfHover);

-->