Just a thought there... The first transition is generally the least appealing (and most choppy) due to setTimeout being called on docReady. Might I suggest you use:
$(window).load(function() {
// load
});
Which would allow you to delay the animation for maximum sexiness.