  $(function(){
    $('.zoom').hover(function(){
      $(this).children('img').stop(true,true)
			.animate({height:"190px",left:"0",top:"0"}, 500);
    },
		function(){
			$(this).children('img').stop(true,true)
		.animate({height:"90px",left:"0",top:"0"}, 500);
		});
  });
