 function pageLoad() {  enableZoom(); }    function enableZoom() {  $(document).ready(function() {   var move = -10     zoom = 1.1;   $('.zoomed').hover(function() {        width = $('.zoomed').width() * zoom;    height = $('.zoomed').height() * zoom;       $(this).find('img').stop(false,true).animate({'width':width, 'height':height, 'top':move, 'left':move}, {duration:300});    $(this).find('div.caption').stop(false,true).fadeIn(300);   },   function() {    $(this).find('img').stop(false,true).animate({'width':$('.zoomed').width(), 'height':$('.zoomed').height(), 'top':'0', 'left':'0'}, {duration:300});     $(this).find('div.caption').stop(false,true).fadeOut(400);   });  }); }
