        tinyMCE.init({
            // General options
            mode : "textareas",
            theme : "advanced",
			skin : "o2k7",
			skin_variant : "black",
			content_css : "http://www.zorith.com/css/tinymceContent.css",
			relative_urls : false,
			
            plugins : "safari,inlinepopups,paste,fullscreen,maxchars,advimagescale",
        
            // Theme options
            theme_advanced_buttons1 : "newdocument,|,undo,redo,|,bold,italic,underline,strikethrough,justifyleft,justifycenter,justifyright,justifyfull,|,cut,copy,paste,|,bullist,numlist,|,link,unlink,blockquote,indent,outdent,|,removeformat",
            theme_advanced_buttons2 : "",
			theme_advanced_buttons3 : "",
			theme_advanced_disable: "styleselect,formatselect,searchreplace,search",
            theme_advanced_toolbar_location : "top",
            theme_advanced_toolbar_align : "center",
            theme_advanced_statusbar_location : "none",
            theme_advanced_resizing : false,
			apply_source_formatting : true,
			
			//Char length
			max_chars : 10000, 
			max_chars_indicator : "charsRemainingBox",
			max_chars_nospaces : 1,
			max_chars_text : "Characters Remaining: ",
			max_chars_maxText : "Maximum Characters Reached",
			
			invalid_elements: "table,tr,td,tbody"
        });