function tinyMCE_init(){
  tinyMCE.init({
  	mode: "textareas",
  	theme: "advanced",
  	editor_selector: "mceEditor",
  	skin: "o2k7",
  	plugins: plugins,
  	theme_advanced_buttons1: theme_advanced_buttons1,
  	theme_advanced_buttons2: theme_advanced_buttons2,
  	theme_advanced_buttons3: theme_advanced_buttons3,
  	theme_advanced_buttons4: "",
  	theme_advanced_toolbar_location: "top",
  	theme_advanced_toolbar_align: "left",
  	theme_advanced_statusbar_location: "bottom",
  	theme_advanced_resizing: true,
  	content_css: "/stylesheets/front.css",
  	theme_advanced_styles: "red=red, yellow=yellow, orange=orange, grey=grey, green=green",
  	// Drop lists for link/image/media/template dialogs
		//template_external_list_url: "/javascripts/tinymce/examples/lists/template_list.js",
		//external_link_list_url: "/javascripts/tinymce/examples/lists/link_list.js",
		external_image_list_url: "/admin/pictures.js?tiny=ram",
		//media_external_list_url: "/javascripts/tinymce/examples/lists/media_list.js",
		// Replace values for the template plugin
		template_replace_values: {
			username: "Some User",
			staffid: "991234"
		}
  });
}