<!--//--><![CDATA[//><!-- 
	
        function selectHide(){
	selects = document.getElementsByTagName("select");
	for (i = 0; i != selects.length; i++) {
		selects[i].style.visibility = "hidden";
	}
	}
	function selectShow(){
	selects = document.getElementsByTagName("select");
	for (i = 0; i != selects.length; i++) {
		selects[i].style.visibility = "visible";
	}
	}

	function selectHide2(){
	selects = document.getElementsByName("school");
	for (i = 0; i != selects.length; i++) {
		selects[i].style.visibility = "visible";
	}
	}
	
sfHover = function() { 
     var sfEls = document.getElementById("nav2").getElementsByTagName("LI"); 
     for (var i=0; i<sfEls.length; i++) { 
        sfEls[i].onmouseover=function() { 
selectHide();  
selectHide2();
      
this.className+=" sfhover";         
        } 
        sfEls[i].onmouseout=function() { 
selectShow();

           this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); 
        } 
     } 
  } 
  if (window.attachEvent) window.attachEvent("onload", sfHover); 


sfHover = function() { 
     var sfEls = document.getElementById("nav").getElementsByTagName("LI"); 
     for (var i=0; i<sfEls.length; i++) { 
        sfEls[i].onmouseover=function() {
 selectHide();  
selectHide2(); 
           this.className+=" sfhover"; 
        } 
        sfEls[i].onmouseout=function() { 
selectShow();
           this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); 
        } 
     } 
  } 
  if (window.attachEvent) window.attachEvent("onload", sfHover); 

//--><!]]>

