$("a.tip, div.thumbh").mouseenter(function() {
$(this).find('img').stop().animate({width:"162px", height:"162px", left:"-20px", top:"-20px"},100)
}).mouseleave(function() {
$(this).find('img').stop().animate({width:"122px", height:"122px", left:"0px", top:"0px"},100);
});
.tip img の子だけをアニメーション化したいと思います。どうやってやるの ?