  $(function(){
    /*$('.zoom').hover(function(){
      $(this).children('img').stop(true,true)
			.animate({width:"276px",height:"207px",left:"-63px",top:"0"}, 500);
    },
		function(){
			$(this).children('img').stop(true,true)
		.animate({width:"80px",height:"60px",left:"0",top:"0"}, 500);
		}); */
	$('.zoom').hover(function(){
			$(this).children('img').stop(true,true).stop().animate({width:"352px",height:"264px",left:"-25px",top:"-25px"}, 700);
			var s=$(this).children('img').attr("src").substr(10);
			$(this).children('img').attr("src","img/352x264/"+s);
		},
		function(){
			$(this).children('img').stop(true,true).animate({width:"80px",height:"60px",left:"0",top:"0"}, 700);
			var s=$(this).children('img').attr("src").substr(12);
			$(this).children('img').attr("src","img/80x60/"+s);
		});
  });
