// JavaScript Document
tinyMCE.init({
	mode : "exact",
	elements : "mce1, mce2",
	theme : "advanced",
	plugins : "spellchecker, paste, save",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	theme_advanced_buttons1 : "code,pasteword,cleanup,bold,italic,underline,strikethrough,justifyleft,justifycenter,justifyright,justifyfull,bullist,numlist,indent,outdent,link,unlink,sup,sub,charmap,redo,undo,spellchecker",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
	theme_advanced_resize_horizontal : true,
	theme_advanced_resizing : true,
	force_br_newlines : true,
	apply_source_formatting : true,
	auto_cleanup_word : true,
	cleanup_on_startup : true,
    cleanup : true,
	paste_use_dialog: true,
	paste_auto_cleanup_on_paste : true,
	paste_remove_styles : true,
	paste_strip_class_attributes : "all"
});