$(function(){
	$('.zoom').hover(function(){
			$(this).stop().animate({width:"300px",height:"150px",left:"-25px",top:"-25px"}, 400);
			$(this).attr("src","/images/template1488/images/way.jpg");
		},
		function(){
			$(this).stop().animate({width:"160px",height:"80px",left:"0",top:"0"}, 400);
			$(this).attr("src","/images/template1488/images/way_mini.jpg");
		});
});

