$(function(){
	$("ul#menu li").hover(function(){
		$("> ul:not(:animated)" , this).animate({
			height : "toggle",
			opacity : "toggle"
		}, 200 );
	},
	function(){
		$("> ul" , this).fadeOut("slow");
	});
});
