// JavaScript Document
tinyMCE.init({
	mode : "textareas",
	theme : "advanced",
	relative_urls : false,
	remove_script_host : false,
	document_base_url : "http://www.latinograduate.com/",
	theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
	theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,forecolor,backcolor",
	theme_advanced_buttons3 : "spellchecker,selectall",
	theme_advanced_toolbar_align : "left",
	theme_advanced_statusbar_location : "bottom",
	theme_advanced_resizing : true,
	theme_advanced_toolbar_location : "top",
	spellchecker_languages : "+English=en,Swedish=sv",
	plugins : "paste,spellchecker",
    
	paste_auto_cleanup_on_paste : true,
    paste_preprocess : function(pl, o) {
            // Content string containing the HTML from the clipboard
            alert(o.content);
        },
    paste_postprocess : function(pl, o) {
            // Content DOM node containing the DOM structure of the clipboard
            alert(o.node.innerHTML);
        }

});
