function setupMCE()
{
	tinyMCE.init({
		// General options
		mode : "textareas",
		theme : "advanced",
		plugins : "save",

		// Theme options
		theme_advanced_buttons1 : "save,cleanup,fontselect,fontsizeselect,forecolor,bold,italic,underline",
		theme_advanced_buttons2 : "",
		theme_advanced_buttons3 : "",
		theme_advanced_buttons4 : "",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resizing : true,

		forced_root_block : false,
		force_br_newlines : true,
		force_p_newlines : false,
		//save_callback : "save_edit",
		content_css : 'screen.css'
	});
}

$(function () {
	setupMCE();
});
