var isIE = document.all&&document.getElementById;

hoverSearch = function() 

{

	if (isIE) 

	{

		var btn = document.getElementById("btnSearch");

		if (null != btn) {
			btn.onmouseover = function() {
	
				this.className = "hover";
	
			}
	
			btn.onmouseout = function() {
	
				this.className = this.className.replace(new RegExp(" hover\\b"), "");
	
			}
		}
	}
}

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




menuHover = function() {

	if(isIE) 

	{

		navRoot = document.getElementById("nav2container").childNodes[0];

		if (null != navRoot)

		{

			var topMenuItems = navRoot.childNodes;

			for (var i = 0; i < topMenuItems.length; i++) 

			{

				topMenuItems[i].onmouseover = function()

				{

					this.className += " sfhover";

				}

				topMenuItems[i].onmouseout = function() 

				{

					this.className = this.className.replace(new RegExp(" sfhover\\b"), "");

				}

			}

		}

	}

}

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