This demo shows how to animate an item into place. Assume that the book image below is in its final location and you want to animate into that location when the user clicks on button or when an audio cuepoint is reached.
$('#hideme').click(function() {
$('#book').hide();
});
$('#animateme').click(function() {
$('#book').animateFrom();
});
$('#animateme2').click(function() {
$('#book').animateFrom({direction:"bottom", delta:200, speed:2000, callback:simpleAlert});
});