// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function fade_out() {
  new Effect.Opacity("background-overlay", {
      duration:1.0, from:1.0, to:0.0, afterFinish:function(){ 
        Element.hide("background-overlay"); 
      }
  });
  return true;
}