$( '#box1' ).fadeOut( 1500 ); $( '#box1' ).remove();
$( '#box2' ).fadeOut( 1500, function() {
$( '#box2' ).remove();
});
$( '#box3' ).animate({
width: '70%',
opacity: 0.4,
marginLeft: '0.6in',
fontSize: '3em',
borderWidth: '10px'
}, 1500, function() {
$( '#box3' ).remove();
});