<!--//--><![CDATA[//><!--
	document.execCommand('BackgroundImageCache', false, true);
	sfHover = function() {
			var sfEls = document.getElementById("nav").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
				if (this.className.indexOf("level")=="-1") {
				  this.style.backgroundPosition="0 -45px";
				}
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				if (this.className.indexOf("level")=="-1" && this.className.indexOf("hi")=="-1") {
				  this.style.backgroundPosition="0 0";
				}
			}
		}
	}
	if (window.attachEvent) window.attachEvent("onload", sfHover);
	//--><!]]>