$(function()
{
	$('.img').hover(function()
	{
		$(this).children('img').stop().animate({width:"280",height:"250"}, 400);
		}, function(){ $(this).children('img').stop().animate({width:"140px",height:"124px"}, 400); 
	});
});

