tinyMCE.init({
	theme : "advanced",
	plugins : "youtube",
	language : "nl",
	mode : "specific_textareas",
	save_callback : "customSave",
	//content_css : "{SITE_ROOT}css/tiny.css",
	theme_advanced_styles : "Titel=Titel;Subkop=Subkop",
	theme_advanced_buttons1 : "removeformat, separator, bold, italic, separator, justifyleft, justifycenter, justifyright, separator, bullist, numlist, outdent, indent, link, unlink, separator, forecolor, charmap, code, youtube", 
	theme_advanced_buttons2 : "", 
	theme_advanced_buttons3 : "", 
	debug : false,
	theme_advanced_toolbar_location : "top"
});

// Custom save callback, gets called when the contents is to be submitted
function customSave(id, content) {
	var field = "cms_" + id;
	document.forms['cms'][field].value = content;
}

