$().ready(function() {
	$('textarea.tinymce').tinymce({
		// Location of TinyMCE script
		script_url : 'http://'+document.location.hostname+'/javascripts/tiny_mce/tiny_mce.js',

		// General options
		language : "nl",
		mode : "textareas",
		theme : "advanced",
		plugins : "emotions,safari",

		theme_advanced_buttons1 : "bold,italic,underline,|,undo,redo,|,sub,sup,|,emotions,charmap,removeformat",
		theme_advanced_buttons2 : "",
		theme_advanced_buttons3 : "",

		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",

		// Example content CSS (should be your site CSS)
		content_css : "css/tinymce.css",
	});
});