//<![CDATA[

/* dwe 20100628: modified to work with IE6: */
sfHover = function() {
	var sfEls = document.getElementById("nav-cat").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		//alert(sfEls[i]);
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent && navigator.appVersion.indexOf("MSIE 6")>-1) window.attachEvent("onload", sfHover);


//]]>
