$(document).ready(function() {
   $('.magicbox').hover(
      function() {
         $(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
      }, function() {
         $(".cover", this).stop().animate({top:'162px'},{queue:false,duration:300});
      }
   );
});