/************************************************************
 * JAVASCRIPT: code voor de editor							
 ************************************************************/
 
 
// De advanced editor
tinyMCE.init({
	mode: "specific_textareas",
	theme : "advanced",
	textarea_trigger : "mceEditor_advanced",
	plugins : "advimage,advlink,preview",

	theme_advanced_buttons1_add : "fontsizeselect",
	theme_advanced_buttons2_add_before: "cut,copy,paste,separator",
	theme_advanced_buttons2_add : "preview,forecolor",
	theme_advanced_buttons3 : "",
	
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]"
}
);

  
// De basic editor
tinyMCE.init({
	mode: "specific_textareas",
	textarea_trigger : "mceEditor_basic",
	theme : "advanced",
	
	plugins : "preview",

	theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright, justifyfull,separator,bullist,numlist,separator,preview,forecolor",
	theme_advanced_buttons2 : "fontselect,fontsizeselect",
	theme_advanced_buttons3 : "",
	
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left"
});