/* Tiny MCE */
if(this.tinyMCE != undefined){
	initTiny();
}

function initTiny(){
	tinyMCE.init({
		mode : "textareas",
		theme : "advanced",
		editor_selector : "richtext",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resizing : true,
		file_browser_callback : "tinyBrowser",
		plugins: "fullscreen, table, advimage",
		theme_advanced_buttons1:"bold,italic,underline,|,justifyleft,justifycenter,justifyright,justifyfull,|, bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,image,cleanup,formatselect",	
		theme_advanced_buttons2: "tablecontrols, hr,removeformat,visualaid,|,sub,sup,|,fullscreen,|,charmap,code",
		theme_advanced_buttons3:""
		
	});
}

function initSimpleTiny(){
	tinyMCE.init({
		mode : "textareas",
		theme : "simple",
		editor_selector : "richtext",
		file_browser_callback : "tinyBrowser"
	});
}
