アニメーションを完全に壊さずにキューイングから停止するにはどうすればよいですか...以下のように .stop() を使用してみましたが、アニメーションが本当に奇妙な時間に停止し、再び開始されないようです。
$('.work_tile').hover(function() {
$(this).stop().find('.white_bkd').stop().fadeIn('fast');
$(this).stop().children('div.arrow').stop().animate({
"left": "+=305px"
}, "fast");
$(this).stop().children('div.tile_header').stop().animate({
"right": "+=200px"
}, "fast");
}, function() {
$(this).stop().find('.white_bkd').stop().fadeOut('fast');
$(this).stop().children('div.arrow').stop().animate({
"left": "-=305px"
}, "fast");
$(this).stop().children('div.tile_header').stop().animate({
"right": "-=200px"
}, "fast");
})