[jQuery] animate in order

[jQuery] animate in order


I have two items:
$('#backDropLeft').animate({height:550}, {duration: 750, easing:
'easeOutBack'});
$('#contactBox').fadeIn(1000, function() { });
How can I make contactBox wait until backDropLeft is finished to run
its animate?