// JavaScript Document
	tinyMCE.init({
		mode : "specific_textareas",
		editor_selector : "htmlTextarea",
		theme : "advanced",
		plugins : "style,table,advhr,advlink,advimage,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,noneditable,visualchars,nonbreaking,xhtmlxtras",
		theme_advanced_buttons1_add_before : "",
		theme_advanced_buttons1_add : "fontselect,fontsizeselect",
		theme_advanced_buttons2_add : "separator,forecolor,backcolor",
		theme_advanced_buttons2_add_before: "",
		theme_advanced_buttons3_add_before : "tablecontrols,separator",
		theme_advanced_buttons3_add : "iespell,file,advhr,separator,print,separator",
		theme_advanced_buttons4 : "styleprops,spellchecker",
	    plugin_insertdate_dateFormat : "%Y-%m-%d",
	    plugin_insertdate_timeFormat : "%H:%M:%S",
		extended_valid_elements : "hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style],p[lang]",
		apply_source_formatting : true,
		spellchecker_languages : "+English=en",
		remove_script_host : true,
		relative_urls : false,
		force_p_newlines: false,
		force_br_newlines: true,
		file_browser_callback: tinyBrowser //Hookup tinyupload the the filebrowser call back.  
});
