$().ready(function() {

		$('textarea.tinymce').tinymce({
		// Location of TinyMCE script
		script_url : '/tinymce/jscripts/tiny_mce/tiny_mce.js',
		// General options
		height : "200",
		width : "500",
		mode : "textareas",
		theme : "advanced",
		plugins : "insertdatetime,media,searchreplace,paste,directionality,fullscreen,noneditable,visualchars,inlinepopups",

		// Theme options
		theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,link,unlink,|,forecolor,backcolor,|,outdent,indent,|,undo,redo",
		theme_advanced_buttons2 : "",
		theme_advanced_buttons3 : "",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "center",
		theme_advanced_resizing : false,


		// Example word content CSS (should be your site CSS) this one removes paragraph margins
		content_css : "/tinymce/css/word.css",

		// Drop lists for link/image/media/template dialogs
		template_external_list_url : "/tinymce/lists/template_list.js",
		external_link_list_url : "/tinymce/lists/link_list.js",
		media_external_list_url : "/tinymce/lists/media_list.js",

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