// JavaScript Document
$(document).ready(function (){
	init_mce();		
	
if ($.browser.msie && $.browser.version.substr(0,1)<7) {
                         alert("We're currently working making this work in IE6, you'll need to bear with us!\n \nTry viewing this in another browser for the moment!");
			 
			          }
				  });
function init_mce(){
	
	$('textarea.tinymce').tinymce({
			// Location of TinyMCE script
			script_url : 'sucu/display/js/tiny_mce/tiny_mce.js',

			// General options
			theme : "advanced",
			plugins : "table",

			// Theme options
			theme_advanced_toolbar_location : "top",
			theme_advanced_buttons1 : "formatselect,|,bold,italic,underline,|,table,|,bullist,numlist,|,undo,redo,|,link,unlink,|,code",
			theme_advanced_buttons2 : "",
			invalid_elements : "xml,w,font",
			theme_advanced_blockformats : "p,h2,h3,h4",

			// Example content CSS (should be your site CSS)
			//content_css : "/sucu/display/css/common.css",
			relative_urls : false,
remove_script_host : false,

			// Drop lists for link/image/media/template dialogs
			template_external_list_url : "lists/template_list.js",
			external_link_list_url : "lists/link_list.js",
			external_image_list_url : "lists/image_list.js",
			media_external_list_url : "lists/media_list.js",

			// Replace values for the template plugin
			template_replace_values : {
				username : "Some User",
				staffid : "991234"
			}
		});
}
