// JavaScript Document

//document.domain = 'bouwmatch.nl'; 

	$().ready(function() {
		$('textarea.wysiwyg').tinymce({
			// Location of TinyMCE script
			script_url : '/shared/js/tiny_mce/tiny_mce.js',
			 
			theme : "advanced",
		
			language : "nl",
		
		//	plugins : "fullscreen",
			plugins : "fullscreen,paste",
			
			theme_advanced_buttons1 : "formatselect,bold,italic,separator,bullist,numlist,separator,undo,redo,separator,link,unlink,charmap,separator,pastetext,removeformat",
			theme_advanced_buttons1_add : "fullscreen,code",
			theme_advanced_buttons2 : "",
			theme_advanced_buttons3 : "",
		
			theme_advanced_toolbar_location : "top",
			theme_advanced_toolbar_align : "left",
			theme_advanced_path_location : "bottom",
			
			content_css : '../layout/style.css',
			
			theme_advanced_blockformats : "p,h1,h2,h3,h4",
		
			fullscreen_new_window : true,
			fullscreen_settings : {
				theme_advanced_path_location : "top"
			}	
	})
});


