Use the animate.css animations from http://daneden.me/animate/
Basic
$('#your-id').animateCSS('fadeIn');
With callback
$('#your-id').animateCSS('fadeIn', function(){
alert('Boom! Animation Complete');
});
With delay (in ms)
$('#your-id').animateCSS('fadeIn', 500);
With delay AND callback
$('#your-id').animateCSS('fadeIn', 1000, function(){
alert('Boom! Animation Complete');
});
Added Opera animation end event