// Navigation ----------------------------------------------------------------------------------------------------------------------------------
	
	window.onload = function()
	{
		var navRoot = document.getElementById("mainlevel-main");
		var disableElements = new Array();

		for (var i = 0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];

			if (node.nodeName=="LI")
			{
				node.onmouseover = function()
				{
					this.className += " over";

					for (var j = 0; j<disableElements.length ;j++)
					{
						document.getElementById(disableElements[j]).style.visibility = "hidden";
					};
				};

				node.onmouseout = function()
				{
					this.className=this.className.replace(" over", "");

					for (var j = 0; j<disableElements.length ;j++)
					{
						document.getElementById(disableElements[j]).style.visibility = "visible";
					};
				};
			};
		};
	};





// Popup ---------------------------------------------------------------------------------------------------------------------------------------

	function listenLive(loc)
	{
		window.open(loc,'player','width=885,height=350');
	}
