連鎖的に発生するイベントに追随させるanimateメソッドの書き方

scrollイベントとかmouseoverイベントとかで。
queue([])でキューをクリアするのがポイント。

ctrlMove : function(){
	var o=this,c=o.cfg;
	if(c.timer)clearTimeout(c.timer);
	c.timer=setTimeout(function(){
		c.target.queue([]).animate({
			top:o.getNextPos('top'),
			left:o.getNextPos('left')
		});
	},100)
}