$(function() {
	$('.tinymce').tinymce({
		// Location of TinyMCE script
		script_url : 'admin/js/tiny_mce/tiny_mce.js',

		// General options
		theme : "advanced",
		skin : "o2k7",
		skin_variant : "silver",
		plugins : "save,advhr,advimage,advlink,emotions,iespell,inlinepopups,searchreplace,contextmenu,paste,directionality,noneditable,visualchars,nonbreaking,xhtmlxtras,template,advlist",

		// Theme options
		theme_advanced_buttons1 : "undo,redo,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,sub,sup,|,charmap",
		theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,blockquote,|,link,unlink,image,|,forecolor,backcolor",
		theme_advanced_buttons3 : "",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resizing : false,
		width: 420
	});
	
	$('.subnav').click(function(){
		$(this).next().slideToggle();
		return false;
	});
});
