/* 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
	});
}

function initSimpleTiny(){
	 var style = readCookie("mystyle"); 
	 var cssUrl = "styles/";
	 
	 if (style == "Day") { 
		cssUrl += "tinymce_day.css"; 
	 } 
	 else{
		cssUrl += "tinymce_night.css";
	 }

	tinyMCE.init({
		mode : "textareas",
		theme : "simple",
		editor_selector : "richtext",
		content_css : cssUrl
	});
}