$(document).ready(function(){ 
	/*MENU*/
	
	$("#menu ul li ul").hide();
	$("#menu").children().children().hover(
		function(){
			var heightSub = $(this).find("ul").height();
			var heightMenu = $(this).height();
			$(this).addClass("a");
			$(this).css("height", heightSub + heightMenu);
			$(this).find("ul").slideDown(400);
		},
		function(){
			$(this).find("ul").slideUp(400);
			$(this).css("height","58px");
		}
	);

});
