// JavaScript Document
	function submenu_down(){
			if($(">a",this).attr("to")=="open"){
					$(">a",this).attr("to","close");
					$(">div", this).slideDown(200);
			}
			$(this).addClass('current');
	}

	function submenu_up(){
			if($(">a",this).attr("to")=="close"){
					$(">a",this).attr("to","open");
					$(">div", this).slideUp(200);
			}
			$(this).removeClass('current');
	}

	$(function(){
		$(".menu_left .gomenu").hover(
				submenu_down,submenu_up
				);
		});
