$(function(){
	tinyMCE.init({
		theme: "advanced",
		mode: "specific_textareas",
		editor_selector: "richtext",
		plugins: "safari,inlinepopups,paste",
		
		paste_auto_cleanup_on_paste: true,
		paste_remove_styles: true,
		paste_remove_styles_if_webkit: true,
		paste_strip_class_attributes : true,
		
		theme_advanced_buttons1: "bold,italic,underline,separator,strikethrough,separator,pastetext,separator,bullist,numlist,separator,undo,redo,separator,link,unlink,charmap,hr,image,code",
		theme_advanced_buttons2: "",
		theme_advanced_buttons3: "",
		theme_advanced_toolbar_location: "top",
		theme_advanced_toolbar_align: "left",
		theme_advanced_statusbar_location: "",
		full_html: false,
		
		file_browser_callback: function(field_name, url, type, win) {
			tinyMCE.activeEditor.windowManager.open({
				file: "/file/select/type/" + type,
				width: 600,
				height: 480,
				inline: 1
			}, {
				window: win,
				input: field_name
			});
		},
		
		relative_urls: true
	});
});

