tinyMCE.init({
	height : "500px",
	width: "693px",
	mode : "textareas",
	theme : "advanced",
	plugins : "style,layer,table,advhr,advimage,advlink,media,searchreplace,print,contextmenu,paste,fullscreen,noneditable,visualchars,nonbreaking,imagemanager,filemanager", // removed iespell,safari,spellchecker,pagebreak,xhtmlxtras,preview,inlinepopups,directionality,template,
	//plugins : "style,table,advimage,advlink,inlinepopups,searchreplace,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,xhtmlxtras,inlinepopups",
	//theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,forecolor,backcolor,|,fontsizeselect,|,hr,sub,sup,charmap,|,cut,copy,paste,pastetext,pasteword,|,search,replace",
	//theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,|,removeformat,visualaid,|,advhr,|,tablecontrols",
	//theme_advanced_buttons3 : "fullscreen,|,cleanup,code,|,subheading",
	theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
	theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,code,|preview,|,forecolor,backcolor",
	theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,visualchars,nonbreaking,iespell,media,advhr,|,print,|,fullscreen,|,insertfile,insertimage",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	theme_advanced_statusbar_location: "bottom",
	theme_advanced_resizing : true,
	theme_advanced_resize_horizontal : false,
	relative_urls : false,
	remove_script_host : true,
	button_tile_map : true, 	// speeds things up
	forced_root_block : false,
	force_br_newlines : true,
	force_p_newlines : false,
	
	// Example content CSS (should be your site CSS)
	content_css : "/Site_CSS/cms_styles.css",
	
	editor_selector : "mceEditor",
	editor_deselector : "mceNoEditor"
});


tinyMCE.init({
	height : "200px",
	width: "100%",
	mode : "textareas",
	theme : "advanced",
	plugins : "style,advlink,paste,imagemanager,filemanager",
	theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
	theme_advanced_buttons2 : "pastetext,|,bullist,numlist,|,outdent,indent,blockquote,|,forecolor,|,hr,|,undo,redo,|,link,unlink,anchor,|,removeformat,cleanup,code,|,blockquote,image,|,sup,|,insertfile,insertimage",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	theme_advanced_statusbar_location: "bottom",
	theme_advanced_resizing : true,
	theme_advanced_resize_horizontal : false,
	relative_urls : false,
	remove_script_host : true,
	button_tile_map : true,		// speeds things up
	forced_root_block : false,
	force_br_newlines : true,
	force_p_newlines : false,
	
	// Example content CSS (should be your site CSS)
	content_css : "/Site_CSS/cms_styles.css",
	
	editor_selector : "mceSimple"
	/*plugins : 'inlinepopups',
    setup : function(ed) {
        // Add a custom button
        ed.addButton('callout_header', {
            title : 'Callout Header',
            image : '/Site_JavaScript/tiny_mce/plugins/example/img/example.gif',
            onclick : function() {
		// Add you own code to execute something on click
                ed.selection.setContent('<h1>' + ed.selection.getContent() + '</h1>');
            }
        });
    }*/
});