$(document).ready(function() {
  setup();
});

function setup() {
  /* Display everything by default and hide on load so browsers with 
   * Javascript disabled will still see the content */
  $('#content').hide();
  $('#content').fadeIn(1000);
}
