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

function toggle_inline_admin_tools()
{
	$$('.inline-admin-tools').each(Element.toggle);
}

function copy_to_clipboard(text_to_copy) 
{
  if (window.clipboardData) {
    window.clipboardData.setData("Text",text_to_copy);
  } else {
    var flashcopier = 'flashcopier';
    if(!document.getElementById(flashcopier)) {
      var divholder = document.createElement('div');
      divholder.id = flashcopier;
      document.body.appendChild(divholder);
    }
    document.getElementById(flashcopier).innerHTML = '';
    var divinfo = '<embed src="/flash/clipboard.swf" FlashVars="clipboard='+escape(text_to_copy)+'" width="0" height="0" type="application/x-shockwave-flash"></embed>';
    document.getElementById(flashcopier).innerHTML = divinfo;
  }
}