$(document).ready(function() {

  $('.magLink').hover(
      function(){
        $(this).children('.magPreview').show();
      },
      
      function(){
        $(this).children('.magPreview').hide();
      }
  );

});

