<!--//--><![CDATA[//><!--

sfHover = function() {
	var hList = document.getElementById("hNav").getElementsByTagName("LI");
	for (var i=0; i<hList.length; i++) {
		hList[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		hList[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}

	var vList = document.getElementById("vNav").getElementsByTagName("LI");
	for (var i=0; i<vList.length; i++) {
		vList[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		vList[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>
