	var otherMenu = '';
	var menuTimer = null;
	clearTimeout(menuTimer);
	var inMenu = false;
	var tdID;

	function clearTimer(){
		clearTimeout(menuTimer);
		inMenu = true;
	}

	function showMenu(menuID){
		clearTimeout (menuTimer)
			if(document.all[menuID]){

				var o = document.all.menu1;
				if((document.all.menu1)&&(otherMenu!=menuID)){
					hideMenu();
					//o.style.top = event.clientY;
					//o.style.left= event.clientX;
                                        //o.style.position = "fixed";
					o.style.zindex = 1;
				}

				var o = document.all.menu2;
				if((document.all.menu2)&&(otherMenu!=menuID)){
					hideMenu();
					//o.style.top = event.clientY;
					//o.style.left= event.clientX;
					o.style.zindex = 1;
				}

				var o = document.all.menu3;
				if((document.all.menu3)&&(otherMenu!=menuID)){
					hideMenu();
					//o.style.top = event.clientY;
					//o.style.left= event.clientX;
					o.style.zindex = 1;
				}

				var o = document.all.menu4;
				if((document.all.menu4)&&(otherMenu!=menuID)){
					hideMenu();
					//o.style.top = event.clientY;
					//o.style.left= event.clientX;
					o.style.zindex = 1;
				}

				var o = document.all.menu5;
				if((document.all.menu5)&&(otherMenu!=menuID)){
					hideMenu();
					//o.style.top = event.clientY;
					//o.style.left= event.clientX;
					o.style.zindex = 1;
				}

				var o = document.all.menu6;
				if((document.all.menu6)&&(otherMenu!=menuID)){
					hideMenu();
					//o.style.top = event.clientY;
					//o.style.left= event.clientX;
					o.style.zindex = 1;
				}

				var o = document.all.menu7;
				if((document.all.menu7)&&(otherMenu!=menuID)){
					hideMenu();
					//o.style.top = event.clientY;
					//o.style.left= event.clientX;
					o.style.zindex = 1;
				}

				var o = document.all.menu8;
				if((document.all.menu8)&&(otherMenu!=menuID)){
					hideMenu();
					//o.style.top = event.clientY;
					//o.style.left= event.clientX;
					o.style.zindex = 1;
				}

				var o = document.all.menu9;
				if((document.all.menu9)&&(otherMenu!=menuID)){
					hideMenu();
					//o.style.top = event.clientY;
					//o.style.left= event.clientX;
					o.style.zindex = 1;
				}

				document.all[menuID].style.visibility='visible';
			}
			otherMenu = menuID;

	}

	function hideMenu(){
		if(inMenu == false){

				if(document.all[otherMenu]){
					document.all[otherMenu].style.visibility='hidden';
				}

		}
	}

	function mouseOut(){
		inMenu = false;
		menuTimer = setTimeout("hideMenu()",400);
	}

	function colorIn(tdID) {
		document.all[tdID].style.backgroundColor="#99CCFF";
	}

	function colorOut(tdID) {
	    //alert("tdID " + tdID)
	    //alert("document.all[tdID] " + document.all[tdID])
	    //alert("document.all[tdID].style " + document.all[tdID].style)
		document.all[tdID].style.backgroundColor="#ccccdd";
	}