<!--
	var Menu = false;
	var SubMenu = false;
	var leftPos = false;
	var topPos = false;
	var timerID = false;
	
	function MM_menu_mover(theObj,color)
	{
		MM_sub_menu_destroy();
		oldColor = theObj.style.background;
		theObj.style.background = color;
		theObj.style.cursor = 'pointer';
		clearTimeout(timerID);
	}
	
	function menu_click(url)
	{
		location.href=url;
	}
	
	function MM_sub_menu_mover(theObj,color)
	{
		oldColor = theObj.style.background;
		theObj.style.background = color;
		theObj.style.cursor = 'pointer';
		clearTimeout(timerID);
	}
	
	function MM_menu_mout(theObj,color)
	{
		theObj.style.background = color;
		theObj.style.cursor = 'default';
		
		timerID = setTimeout("MM_menu_destroy()",1000);
	}
		
	function MM_menu_display(setMenu,obj)
	{
		MM_menu_destroy();
		MM_sub_menu_destroy();
		clearTimeout(timerID);

		Menu = document.getElementById("MainMenu"+setMenu);
		//leftPos = findPosX(obj) + 1;
		leftPos = findPosX(obj) - 2;
		topPos = obj.height;
		if(navigator.appName!="Microsoft Internet Explorer")
			topPos += 70;
		else
			topPos += 70;
		Menu.style.left = leftPos+'px';
		//Menu.style.top = topPos+'px';
		Menu.style.display = '';
	}

	function MM_sub_menu_display(setMenu,obj,width)
	{
		MM_sub_menu_destroy();
		SubMenu = document.getElementById("MainMenu"+setMenu);
		leftPos = findPosX(obj) + width;
		
		topPos = findPosY(obj);
		leftPos += 6;
		SubMenu.style.left = leftPos+'px';
		//SubMenu.style.top = topPos+'px';
		SubMenu.style.display = '';

		SubMenu.style.cursor = 'pointer';
	}
	
	function MM_menu_destroy()
	{
		if(Menu) Menu.style.display = 'none';
		if(SubMenu) SubMenu.style.display = 'none';
	}

	function MM_sub_menu_destroy()
	{
		if(SubMenu) SubMenu.style.display = 'none';
	}

	function findPosX(obj)
	{
		var curleft = 0;
		if (obj.offsetParent)
		{
			while (obj.offsetParent)
			{
				curleft += obj.offsetLeft
				obj = obj.offsetParent;
			}
		}
		else if (obj.x)
			curleft += obj.x;
		return curleft;
	}

	function findPosY(obj)
	{
		var curtop = 0;
		if (obj.offsetParent)
		{
			while (obj.offsetParent)
			{
				curtop += obj.offsetTop
				obj = obj.offsetParent;
			}
		}
		else if (obj.y)
			curtop += obj.y;
		return curtop;
	}
	
//-->