// on load document
document.observe("dom:loaded", function()
{ // initially hide masthead
  $("logo").hide();
  /*$("content_second").hide();*/
  $("sammi").hide();
});

function reveal()
{
  $("logo").show();
  $("logo").blindDown({ duration: 0.8, queue: 'end' });
  $("sammi").blindDown({ duration: 0.4, queue: 'end' });
  /*$("content_second").appear({ duration: 0.8, queue: 'end' });
  $("content_second").show();*/
}

Event.observe(window, 'load', reveal);
