Event.observe(window,'load',function(){
  // Hide everything
  ['topper','one','two','three','four','five','form'].each(function(s){ $(s).hide()});
  ['one','two','three','four','five'].each(function(s){ $(s).appear()});
  $('topper').appear({ afterFinish: function(){ $('form').appear(); }});
});
