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