/**
Top menu drop down
*/
//if(window.location.href.indexOf("http://www.net.actel.hu/topmenu/ugyfelszolg")>-1){
ponte.Services.LoadService.addLoadEvent(initJSTopMenu);
//}

function JSTopMenu(menuElements)
{
	menuElements.parentNode.onmouseover=function()
	{
		menuElements.style.display="block";
	}
	menuElements.parentNode.onmouseout=function()
	{
		menuElements.style.display="none";
	}
	//menuElements.parentNode.setAttribute("id","TopMenuOver");
}
function initJSTopMenu()
{
	menuName="SubTopMenu"
	var lis=document.getElementsByTagName("UL");
	for(l=0; l<lis.length; l++)
	{
		if((lis[l].className.indexOf("SubTopMenu")>-1))
		{
			JSTopMenu(lis[l]);
		}
	}
}

