tinyMCE.init({
	editor_selector : "page_editor",
	content_css : "/includes/styles/elements.css",
	mode : "textareas",
	width : "720px",
	height : "300px",
	document_base_url : "http://www.myworldmychoice.org/",
	convert_urls : false,
	theme : "advanced",
	plugins : "media,pagebreak",
	theme_advanced_buttons1 : "bold,italic,underline,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,outdent,indent,|,image,media,|,link,unlink,undo,redo,|,code",
	theme_advanced_buttons2 : "dmcbposts,dmcbtopics,dmcbcomments",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	extended_valid_elements : "iframe[class|src|width|height]",
	setup : function(ed) {
		ed.addButton('dmcbposts', {
			title : 'Insert posts in page',
			image : '/includes/images/button_posts.gif',
			onclick : function() {
				//text = ed.selection.getContent();
				//ed.selection.setContent('<h2>'+text+'</h2>');
				ed.selection.setContent('<!-- postshere -->');
			}
		});
		ed.addButton('dmcbtopics', {
			title : 'Insert post topics in page',
			image : '/includes/images/button_topics.gif',
			onclick : function() {
				ed.selection.setContent('<!-- topicshere-->');
			}
		});
		ed.addButton('dmcbcomments', {
			title : 'Insert recent comments in page',
			image : '/includes/images/button_comments.gif',
			onclick : function() {
				text = ed.selection.getContent();
				ed.selection.setContent('<!-- commentshere -->');
			}
		});
	}
});

tinyMCE.init({
	editor_selector : "post_editor",
	content_css : "/includes/styles/elements.css",
	mode : "textareas",
	width : "720px",
	height : "300px",
	document_base_url : "http://www.myworldmychoice.org/",
	convert_urls : false,
	theme : "advanced",
	plugins : "media,pagebreak",
	theme_advanced_buttons1 : "bold,italic,underline,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,outdent,indent,|,pagebreak,image,media,|,link,unlink,undo,redo,|,code",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	extended_valid_elements : "iframe[class|src|width|height]"
});