// JavaScript Document

	
sfHover = function() {
	//var niceforms = document.getElementById("plcRoot_Layout_mainContent_pageplaceholder_partPlaceholder_Layout_insideMenu_dropdownlist_DropDownList1").document.getElementsByTagName("select");
	
	//var sfEls = document.getElementById("menuElem").getElementsByTagName("li");
	var sfEls = document.getElementById("menuElem").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) 
			{
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
				//alert(this.className);
				
				}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				}
			}	
	}
	
if (window.attachEvent) window.attachEvent("onload", sfHover);

