$(document).ready(function() {
  $('#header').animate({
    opacity: 1
  }, 1000, function() {
    // Animation complete.
  });
});

