$(document).ready(function() {
  var origHeight = $(".MENU-main").css('height');
  $(".MENU-main").css("height","51px");
  $(".MENU-main").css("overflow","hidden");
  $(".MENU-main").mouseenter(function(){
    $(this).stop().delay(300).animate({height: origHeight},300);
  });
  $(".MENU-main").mouseleave(function(){
    $(this).dequeue().stop().delay(100).animate({height: '51px'},600);
  });
});
