$(document).ready(function(){	
	$('#menuTop ul li[class!="active"] a').each(function(i){
		$(this).mouseenter(function(){
			$(this).parent().animate({
				height: 21
			  }, 300, function() {
				$(this).mouseout(function() {
					$(this).parent().css('height', 40);
				});
		  });
		});
		$(this).mouseleave(function(){
			$(this).parent().css('height', 40);
		});
	});
	
});

