<!--//--><![CDATA[//><!--
	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.id) {
					tt = "top_m2_"+this.id;
					document.getElementById(tt).className = tt;
					rr =  tt+"_over";
					pp = document.getElementById(tt);
					if (pp) {
						pp.id = rr;
						xx = document.getElementById("layout-body-filter-clmn1-element");
						if (xx)
							xx.style.display = "none"; /* for IE 6 (menu div z-index overflow  - ignored) */
					}
				}
			}
			sfEls[i].onmouseout=function() {
					this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				if (this.id) {
					document.getElementById(tt+"_over").id = document.getElementById(tt+"_over").className;
					xx = document.getElementById("layout-body-filter-clmn1-element")
					if (xx)
						xx.style.display = "block"; /* for IE 6 (menu div z-index overflow - ignored) */
				}
			}
		}	
	}

	if (window.attachEvent) 
		window.attachEvent("onload", sfHover);

//--><!]]>