var simpleEditor = tinyMCE.init({
	theme: 'simple',
	mode: 'specific_textareas',
	editor_selector: 'simpleEditor'
});
var completeEditor = tinyMCE.init({
	theme: 'advanced',
	mode: 'specific_textareas',
	editor_selector: 'advancedEditor',
	plugins: 'safari,style,table,save,advhr,advimage,advlink,emotions,inlinepopups,media,searchreplace,contextmenu,paste,fullscreen,visualchars,nonbreaking,xhtmlxtras,imago',
	theme_advanced_buttons1: 'save,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,fontselect,fontsizeselect',
	theme_advanced_buttons2: 'cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,imago,cleanup,code,|,forecolor,backcolor',
	theme_advanced_buttons3: 'tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,fullscreen',
	theme_advanced_buttons4: 'styleprops,|,cite,abbr,acronym,del,ins,|,visualchars,nonbreaking,blockquote',
	theme_advanced_toolbar_location: 'top',
	theme_advanced_toolbar_align: 'left',
	theme_advanced_statusbar_location: 'bottom',
	theme_advanced_resizing: true
});

