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

Event.observe(window, 'load', function() {
  $('broadcast_boolean').observe('click', function(e){
    if(this.checked){
      Element.hide('attachment_field');
      Element.hide('add_attachment');
      $('upload').value='';
    }else{
      Element.hide('attachment_field');
      Element.toggle('add_attachment');
      $('upload').value='';
    }
  });
});
