  $(function(){
    $('.zoom50').hover(function(){
      $(this).children('img').stop(true,true)
			.animate({width:"100px",left:"0",top:"0"}, 500);
    },
		function(){
			$(this).children('img').stop(true,true)
		.animate({width:"50px",left:"0",top:"0"}, 500);
		});
  });
