jQuery(function($) {
    // Fade in the front content after 4 seconds, sync with the animated GIF
    $('#front-content').hide().delay(4000).fadeIn(500);
    $('#front-content2').hide().delay(4500).fadeIn(500);
});

