$("#IMAGE1").animate({"left": "+=1050px", queue: false}, "slow", function()
{
// Want this to happen when the image2 animation is completed as well.
$("#IMAGE1").css('left', $('#IMAGE2').position().left);
}
$("#IMAGE2").animate({"left": "+=1050px", queue: false}, "slow");
image1.animation のコールバック関数の本体内で image2.animation がいつ終了したかを確認するにはどうすればよいですか?