jQuery(document).ready(function($) {
  	$('#menu_link').mouseenter(function() {
	  $('#menu').animate({
	    height: 257
	  }, 300);
	});
	
	$('#menu').mouseleave(function() {
		$('#menu').animate({
    	  height: 57
		}, 300);
	})

});

