$(function(){
	$("#nav li").hover(function(){
		$(this).parent('ul').css({overflow: ''});
		$(this).find('ul:first').css({display: "none", height: "auto"}).stop().slideDown(500,"easeInOutQuart");
	},
	function(){
		$(this).find('ul:first').stop().slideUp(400,"easeInOutQuart");
	});
}).jQuery;
