// JavaScript Document
tinyMCE.init({
	// General options
 
	mode : "textareas",
	theme : "advanced",
	elements : "elm1,elm2,elm3,elm4",
    plugins : "safari,advhr,advimage,advlink,searchreplace,paste,directionality,noneditable,visualchars,xhtmlxtras,media",


    // URL handling:    
    relative_urls : false,
    remove_script_host : true,
    // document_base_url : "http://localhost/",  // local
    document_base_url : "http://www.norwichbuddhistcentre.com/",  // live
    
    

	// Theme options
    //theme_advanced_buttons1 : "styleselect,formatselect,fontselect,fontsizeselect",
    theme_advanced_buttons1 : "formatselect,|,link,unlink,|,bold,italic,|,cut,copy,paste,pastetext,pasteword,|,bullist,numlist,|,undo,redo",
	//theme_advanced_buttons2 : "bold,italic,|,cut,copy,paste,pastetext,pasteword,|,bullist,numlist,|,undo,redo",
	//theme_advanced_buttons3 : "link,unlink,anchor,image,charmap,|,help,code,cleanup,removeformat,|,forecolor,backcolor",
	//theme_advanced_buttons4 : "tablecontrols",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    theme_advanced_buttons4 : "",
	theme_advanced_toolbar_location : "bottom",
	theme_advanced_toolbar_align : "left",
	theme_advanced_statusbar_location : "bottom",
	theme_advanced_resizing : false,

	// Example content CSS (should be your site CSS)
	content_css : "/tinymce_3_2/tinymce_styles.css",

	// Drop lists for link/image/media/template dialogs
	//template_external_list_url : "/tinymce_3_2/jscripts/tiny_mce/lists/template_list.js",
	external_link_list_url : "/tinymce_3_2/jscripts/tiny_mce/lists/link_list.php",
	external_image_list_url : "/tinymce_3_2/jscripts/tiny_mce/lists/image_list.php",
	media_external_list_url : "/tinymce_3_2/jscripts/tiny_mce/lists/media_list.js",

	// Replace values for the template plugin
	template_replace_values : {
		username : "Some User",
		staffid : "991234"
	}
});
