// JavaScript Document
tinyMCE.init({
	// General options
	mode : "textareas",// "none",//textareas
	editor_deselector : "NOTanEditor",
	theme : "advanced",
	readonly : false ,
	skin: "cirkuit",
	relative_urls: false,
	plugins : "emotions,insertdatetime",

	// Theme options
	theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
	theme_advanced_buttons2 : ",search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,emotions,|,insertdate,inserttime,preview,|,forecolor,backcolor,|,code,image",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	
	theme_advanced_resizing : true,

	// Example content CSS (should be your site CSS)
	font_size_style_values : "xx-small,x-small,small,medium,large,x-large,xx-large",

	// 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",
	invalid_elements: "script"
});
