// JavaScript Document
	tinyMCE.init({
		// General options
		mode : "textareas",
		theme : "advanced",
	//	content_css : "tinymce/jscripts/tinymce_cust.css?" + new Date().getTime(),
		language : "nl", 
	    spellchecker_languages : "+Nederlands=nl,Engels=en",
		paste_strip_class_attributes : "all",
		paste_text_sticky: false,
		paste_text_use_dialog: true,
		paste_remove_spans : true,
		plugins : "save,advhr,spellchecker,inlinepopups,preview,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,wordcount,advlist,advimage,media",

		// Theme options
		theme_advanced_buttons1 : "cut,copy,paste,pastetext,removeformat,|,undo,redo,|,link,unlink,image,media,|,hr,nonbreaking,|,spellchecker,|,fullscreen",
        theme_advanced_buttons2 : "bold,italic,underline,|,justifyleft,justifycenter,justifyright,|,numlist,bullist,|,outdent,indent,|,forecolor,backcolor,|,charmap,sub,sup,|",
		theme_advanced_buttons3 :"",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resizing : true,

		// Example content CSS (should be your site CSS)
		content_css : "config/default.css",

		// 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",
		valid_elements : "@[id|class|style|title|dir<ltr?rtl|],"
		+ "a[rel|rev|hreflang|tabindex|accesskey|type|"
		+ "name|href|target|title],strong/b,em/i,strike,u,"
		+ "#p,-ol[type|compact],-ul[type|compact],-li,br,img[longdesc|usemap|"
		+ "src|border|alt=|title|hspace|vspace|width|height|align],-sub,-sup,"
		+ "-blockquote,caption,"
		+ "address,hr[size|noshade],-font[face"
		+ "|size|color],dd,dl,dt,cite,abbr,acronym,ins[datetime|cite],"
		+ "object[classid|width|height|codebase|*],param[name|value|_value],embed[type|width"
		+ "|height|src|*],map[name],"
		+ "col[align|char|charoff|span|valign|width],colgroup[align|char|charoff|span|"
		+ "valign|width],dfn,"
		+ "q[cite],samp,select[disabled|multiple|name|size],small,"
		+ ",tt,var,big"
	});

