$(function() {   
		closetimer = 0;   
		//if ($("#index_navi")) {   
			$("#index_navi b").mouseover(function() {   
				clearTimeout(closetimer);   
				if (this.className.indexOf("clicked") != -1) {   
					$(this).parent().next().slideUp(500);   
					$(this).removeClass("clicked");   
				}   
				else {   
					$("#index_navi b").removeClass();   
					$(this).addClass("clicked");   
					$("#index_navi ul:visible").slideUp(500);   
					$(this).parent().next().slideDown(500);   
				}   
				return false;   
			});   
			$("#index_navi").mouseover(function() {   
				clearTimeout(closetimer);   
			});   
			$("#index_navi").mouseout(function() {   
				closetimer = window.setTimeout(function() {   
					$("#index_navi ul:visible").slideUp(500);   
					$("#index_navi b").removeClass("clicked");   
				}, 500);   
			});   
		//}   
	});   

