document.observe("dom:loaded", function(){
  $$('.notice').each(function(el){
    setTimeout(function(){
      new Effect.Fade(el);
    }, 5000);
  });
});