$().ready(function() {
	
		$('textarea.tinymce').tinymce({
			
			// Location of TinyMCE script
			script_url : 'system/jscripts/tiny_mce/tiny_mce.js',

			// General options
			theme : "advanced",
			oninit : "setPlainText",
			convert_fonts_to_spans : true,
			cleanup_on_startup : true,
			force_p_newlines : true,
			entities :"",
    cleanup : true,
			plugins : "paste,pagebreak,style,emotions,iespell,directionality,wordcount,spellchecker",

			// Theme options
			theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfullformatselect,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,pastetext,pasteword,selectall",
			theme_advanced_buttons2 : "",
			paste_auto_cleanup_on_paste : true,
			
	theme_advanced_buttons3 : "",
	theme_advanced_buttons4 : "",
			theme_advanced_toolbar_location : "bottom",
			theme_advanced_toolbar_align : "left",
			theme_advanced_statusbar_location : "",
			theme_advanced_resizing : true,
			

			// Example content CSS (should be your site CSS)
			content_css : "system/jscripts/css/content.css",

		});
	});

