// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
/* fade flashes automatically */
Event.observe(window, 'load', function() { 
    
  $A(document.getElementsByClassName('notice')).each(function(o) {
    o.opacity = 0
    Effect.Fade(o, {delay:1.4, duration: 0.6})
  });

  $A(document.getElementsByClassName('notice_holder')).each(function(o) {
    o.opacity = 0
    Effect.Fade(o, {delay:1.4, duration: 0.6})
  });

});

