tinyMCE.init({
	mode : "textareas",
	theme : "advanced",
	skin : "default",
	relative_urls : false,
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	max_chars : 500,
	theme_advanced_disable: "styleselect,help,code,cleanup,anchor,image",
	theme_advanced_buttons2_add : "emotions,removeformat,charmap",
	theme_advanced_buttons3 : "",
  plugins : "maxchars",
  plugins : "emotions",
  setup : function(ed) {
		ed.onChange.add(function(ed) {
			tinyMCE.triggerSave();
		});
	}
});