// JavaScript Document
		var timeout_id=0;
		var timeout_id2=0;
		var timeout_id3=0;
		function menu_up(btn){
				//clearTimeout ( timeout_id );
				if (document.getElementById) {
					the_div = document.getElementById(btn);
					the_div.style.display = "none";
				}else if(document.all){ //IS IE 4 or 5 (or 6 beta)
					eval("document.all.btn.style.display = 'none'");
				}else if (document.layers) { //IS NETSCAPE 4 or below
					document.layers[btn].display = "none";
				}
				
			}

		function menu_drop(btn){
				if (document.getElementById) {
					the_div = document.getElementById(btn);
					the_div.style.display = "block";
				}else if (document.all){ //IS IE 4 or 5 (or 6 beta)
					eval("document.all.btn.style.display = 'block'");
				}else if (document.layers) { //IS NETSCAPE 4 or below
					document.layers[btn].display = "block";
				}
			}
			function sub_menu_1(btn, action){
				if (action=="up"){
					timeout_id = setInterval('menu_up(\''+btn+'\')', 1000);
				}else if (action=="down"){
					clearTimeout (timeout_id);
					menu_drop(btn);
				}
			}	
			function sub_menu_2(btn, action){
				if (action=="up"){
					timeout_id2 = setInterval('menu_up(\''+btn+'\')', 1000);
				}else if (action=="down"){
					clearTimeout (timeout_id2);
					menu_drop(btn);
				}
			}
			function sub_menu_3(btn, action){
				if (action=="up"){
					timeout_id3 = setInterval('menu_up(\''+btn+'\')', 1000);
				}else if (action=="down"){
					clearTimeout (timeout_id3);
					menu_drop(btn);
				}
			}	