function adminShowTab(id) {
	$(".adminTab").hide();
	$("#"+id).show();
}

var tiny_mce_config = {
		mode : "textareas",
		theme : "advanced",
		plugins : "safari,style,table,advhr,advimage,advlink,preview,media,contextmenu,paste,fullscreen,xhtmlxtras,template,library",
		theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontsizeselect",
		theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,bullist,numlist,|,undo,redo,|,link,unlink,anchor,image,cleanup,code,|,forecolor,|,fullscreen,template",
		theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,|,sub,sup,|,media,advhr,library",
		theme_advanced_buttons4 : "",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resizing : true,
		
		content_css : base_dir+"app/webroot/css/site.generic.css",
		theme_advanced_styles: "Page Header=page_header,Small Header=small_header, Case Name=case_name, Contact Information=contact_information",
		
		template_external_list_url : base_dir+"app/webroot/js/template_list.js",
		external_link_list_url : base_dir+"tinymce/link_list",
		external_image_list_url : base_dir+"tinymce/image_list",
		media_external_list_url : base_dir+"tinymce/media_list",
		
		cleanup : true,
		convert_fonts_to_spans: true,
		relative_urls : false,
		auto_cleanup_word: true,
		paste_auto_cleanup_on_paste : true
	};
