function initTiny()
{
  tinyMCE.init({
   "mode" : "specific_textareas",
   "theme" : "advanced",
   "editor_selector": "rich_content",
   "theme_advanced_buttons1" : "bold,italic,underline,separator,bullist,numlist,link,unlink",
   "theme_advanced_buttons2" : "",
   "theme_advanced_buttons3" : "",
   "theme_advanced_toolbar_location" : "top",
   "theme_advanced_toolbar_align" : "left",
   "extended_valid_elements" : "a[name|href|target|title],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
  "width" : "95%",
  "plugins" : "spellchecker",
	"theme_advanced_buttons3_add" : "spellchecker",
  "spellchecker_languages" : "+English=en",
  "spellchecker_rpc_url" : "/spell_checker",
  "theme_advanced_buttons1_add" : "spellchecker",
  "cleanup":true
  });
}
