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

var tiny_mce_config = {
		mode : "textareas",
		theme : "advanced",
		plugins : "safari,style,table,advhr,advimage,advlink,pagebreak,preview,media,contextmenu,paste,fullscreen,xhtmlxtras,template,library,youtube",
		theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect",
		theme_advanced_buttons2 : "cut,copy,paste,pastetext,|,bullist,numlist,|,undo,redo,|,link,unlink,anchor,image,cleanup,code,|,fullscreen",
		theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,|,sub,sup,|,media,youtube,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: "Big header text=big_header;Big text=big;Orange text=orange;Black text=black;Gray text=gray;Link with transition=transition",
        
		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
	};
