$(document).ready(function() {  
      var move = -15;  
      var zoom = 1.2;  
      $('.zitem').hover(function() {  
    	  $(this).find('img').stop(false,true).animate({'width':100, 'height':100, 'top':move, 'left':move}, {duration:400});  
     },  
     function() {  
          $('#tc_1').find('img').stop(false,true).animate({'width':100, 'height':100, 'top':'0', 'left':'0'}, {duration:100});    
 
     });  
});  