  $(document).ready(function(){
    $('.quick-jump').mouseenter(function(){
      $(this).stop().clearQueue().animate({
        top:0
      }, 500, function() {
        // Animation complete.
      });
    }).mouseleave(function(){
      $(this).stop().clearQueue().animate({
        top:-152
      }, 500, function() {
        // Animation complete.
      });
    });
  });
