tinyMCE.init({
	mode : "exact",
    elements: "article_text, grant_planneduse, grant_objectives, grant_similarservices, grant_othersources, grant_commitments",
	theme : "advanced",
	theme_advanced_buttons1 : "bold,italic,separator,bullist,numlist,undo,redo",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	forced_root_block : "p",
	force_p_newlines : "true"
	
    setup: function(ed) {
       
        // Force Paste-as-Plain-Text
        ed.onPaste.add( function(ed, e, o) {
            ed.execCommand('mcePasteText', true);
            return tinymce.dom.Event.cancel(e);
        });
       
    }
});


