//function initPage()
//{
//	var navRoot = document.getElementById("language");
//	navRoot.onclick = function()
//	{
//		if (this.className == "hover")
//		{
//			this.className = ""; 
//			return false;
//		}
//		this.className = "hover";
//		return false;
//	}

//	navRoot.parentNode.parentNode.parentNode._navRoot = navRoot;

//	navRoot.parentNode.parentNode.parentNode.onmouseover = function(){
//		if(this._timeout) clearTimeout(this._timeout);
//	}
//	navRoot.parentNode.parentNode.parentNode.onmouseout = function(){
//	    this._timeout = setTimeout('_close()',50);
//	}
//}

function OpenLanguagePopup()
{
    var navRoot = document.getElementById("language");
    if (navRoot.className == "hover")
	{
		navRoot.className = ""; 
	}
	navRoot.className = "hover";
	
	navRoot.parentNode.parentNode.parentNode._navRoot = navRoot;
	
	navRoot.parentNode.parentNode.parentNode.onmouseover = function(){
		if(this._timeout) clearTimeout(this._timeout);
	}
	navRoot.parentNode.parentNode.parentNode.onmouseout = function(){
	    this._timeout = setTimeout('_close()',50);
	}
}

function _close()
{
	var navRoot = document.getElementById("language");
	if(navRoot)
	{
		navRoot.className = "";
	}
}

//if (window.addEventListener)
//	window.addEventListener("load", initPage, false);
//else if (window.attachEvent)
//	window.attachEvent("onload", initPage);
	


function showMenuItem(id)
{
    document.getElementById(id).style.display = 'block';
}

function hideMenuItem(id)
{
    document.getElementById(id).style.display = 'none';
}

