// JavaScript Document

<!--//--><![CDATA[//><!--

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

//--><!]]>

/*
window.onload=function(){	
var menu=document.getElementById("menu");	
var inli=menu.getElementsByTagName("LI");	
for(var x=0; x < inli.length; x++){		
inli[x].onmouseover=function(){			
this.getElementsByTagName("UL")[0].style.display="block";		
}		
inli[x].onmouseout=function(){		
this.getElementsByTagName("UL")[0].style.display="none";	
}	}}
*/