tinyMCE.init({
mode : "textareas",
editor_deselector : "mceNoEditor",
plugins : "template,safari,style,table,advimage,advlink,media,searchreplace,contextmenu,paste,noneditable,noneditable",
extended_valid_elements : "a[name|href|target|title|onclick],span[class|align|style],ol[type]",
invalid_elements : "font,blink",
theme : "simple",
paste_auto_cleanup_on_paste : true,
paste_convert_middot_lists : true,
auto_reset_designmode : true,
apply_source_formatting : true,
class_filter : function (cls, rule) {
	// Filter classes that appear in the style drop down.
	// Anything prefixed with custom- will be available.
	var prefix = "custom-";
	if (cls.substr(0, prefix.length) == prefix) {
		return cls;
	}
}
});
