$().ready(function() {
	$('#menu li').hover(function() {
		var element = $(this).find('ul');
		element.stop().animate({
			height: '45px'
		}, 200, function () {
			element.animate({
				height: '38px'
			}, 100);
		});
	}, function() {
		var element = $(this).find('ul');
		element.stop().animate({
			height: '0px'
		}, 50);
	});
});
