	window.status = "bevy";

	//////////////////////////////////////////////////////////////////////////////////
	var objectTopMenu;
	var iDefaultMenu=0;
	var sDefaultColor= "";
	var iCurrentMenu=0;
	var stringColor="";
	var aTopMenuImageOnOver = new Array();
	var aTopMenuImageOnOut = new Array();
	var boolIsReady = false;
		
		
	function Show(topMenuItem, i, sColor)
	{
		if(!boolIsReady)
			return;
			
		window.document.getElementById("layer" + iCurrentMenu).style.display = "none";
		
		if(iCurrentMenu > 0)
		{
			window.document.getElementById("linklayer" + iCurrentMenu).bgColor ="#000000";
			window.document.getElementById(iCurrentMenu).bgColor = stringColor;
			window.document.getElementById("topMenuImage" + iCurrentMenu).src = aTopMenuImageOnOut[iCurrentMenu].src;
		}
	
		window.document.getElementById("layer" + i).style.display = "";
		window.document.getElementById("linklayer" + i).bgColor = sColor;
		window.document.getElementById(i).bgColor = sColor;
		topMenuItem.src = aTopMenuImageOnOver[i].src;
			
		iCurrentMenu = i;
	}
	
		
	
	function _GoOut()
	{
		
			if(iCurrentMenu == iDefaultMenu)
				return;
	
			//hide the current menu item
			window.document.getElementById("layer" + iCurrentMenu).style.display = "none";
			
			if(iCurrentMenu > 0)
			{
				window.document.getElementById("linklayer" + iCurrentMenu).bgColor ="#000000";
				window.document.getElementById(iCurrentMenu).bgColor = stringColor;
				window.document.getElementById("topMenuImage" + iCurrentMenu).src = aTopMenuImageOnOut[iCurrentMenu].src;
			}
			
			//show the default menu item
			window.document.getElementById("layer" + iDefaultMenu).style.display = "";

			if(iDefaultMenu > 0)
			{
				window.document.getElementById("linklayer" + iDefaultMenu).bgColor = sDefaultColor;
				window.document.getElementById(iDefaultMenu).bgColor = sDefaultColor;
				window.document.getElementById("topMenuImage" + iDefaultMenu).src = aTopMenuImageOnOver[iDefaultMenu].src;
			}
			iCurrentMenu = iDefaultMenu;
	}
	
	function GoOutBody()
	{
		try
		{
			if(boolIsReady)
			{
				var oElmt = window.event.srcElement;
				//var oElmt = window.Event.target; //for netscape
			
				//doesn't work on netscape
				if(!objectTopMenu.contains(oElmt))
					_GoOut();
			}
		}
		catch(e)
		{
			//alert("i");
		}
	}