$(function(){

    $('.img').hover(function(){

      $(this).children('img').stop().animate({width:"235px",height:"40px"}, 500);

    }, function(){ $(this).children('img').stop().animate({width:"223px",height:"38px"}, 500); });

  });
