// this takes care of setting up the tinymce control
$(function() {
	$('textarea.tinymce').tinymce({
		script_url : 'tinymce_3_3_9_2_jquery/tiny_mce.js',
		
		theme : "advanced",
		mode : "textareas",
		plugins : "safari,style,advimage,emotions,preview,media,searchreplace,contextmenu,paste,directionality,fullscreen,xhtmlxtras",
	
	
		theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,forecolor,|,formatselect,fontselect,fontsizeselect,|,bullist,numlist,|,outdent,indent,blockquote|,link,unlink",
		theme_advanced_buttons2 : "",
		theme_advanced_buttons3 : "",
	
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_styles : "Code=codeStyle;Quote=quoteStyle",
		content_css : "resources/skins/2KXI/2KXI.css",
	
		template_external_list_url : "js/template_list.js",
		external_link_list_url : "js/link_list.js",
		external_image_list_url : "js/image_list.js",
		media_external_list_url : "js/media_list.js"
	});
});

// TODO: re-add ",image,emotions,media" to end of theme_advanced_buttons1
