Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/components/bitrix/menu/templates/horizontal_multilevel/
Upload File :
Current File : /var/www/homesaver/www/bitrix/components/bitrix/menu/templates/horizontal_multilevel/script.js

var jshover = function()
{
	var menuDiv = document.getElementById("horizontal-multilevel-menu")
	if (!menuDiv)
		return;

	var sfEls = menuDiv.getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) 
	{
		sfEls[i].onmouseover=function()
		{
			this.className+=" jshover";
		}
		sfEls[i].onmouseout=function() 
		{
			this.className=this.className.replace(new RegExp(" jshover\\b"), "");
		}
	}
}

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