		var hlColor="#eb9135";		// menu item text color
		var hlBgColor="#def2fd";	// menu item background color
		var tdColor="#00508f";		// highlight text color
		var tdBgColor="#eaf7fd";	// highlight background color
				
		var md=350;
		var ti=-1;
		var oTd=new Object;
		oTd=null;
		
		function doMenu(td){
			clearTimeout(ti);
			if(document.getElementById('action')!=null)
				document.getElementById('action').style.visibility="hidden";
			
			if(document.getElementById(td)!=null)
				document.getElementById(td).style.visibility="visible";
		
		}
		
		function doSubMenu(td){
			clearTimeout(ti);
			
			document.getElementById(td).style.backgroundColor=hlBgColor;
			document.getElementById(td).style.color=hlColor;
		}
		
		function overSubMenu(td){
				
			document.getElementById(td).style.backgroundColor=tdBgColor;
			document.getElementById(td).style.color=tdColor;
			
		}
		
		function clearMenu(){
			
			if(document.getElementById('action')!=null)
				document.getElementById('action').style.visibility="hidden";
			if(document.getElementById('grown')!=null)
				document.getElementById('grown').style.visibility="hidden";	
		}
		
		var tncWin
		function PoptncWin() {
		var winX,winY,w=500,h=400
		winX=(screen.availWidth-w)/2; winY=(screen.availHeight-h)/2
		StoresWin=window.open("http://www.tigerbeer.com/tnc.html","WinStores","width="+w+",height="+h+",left="+winX+",top="+winY+",scrollbars")
		}