tinyMCE.init({
	mode : "textareas",	
	height : "300",
	width: "540",	
	content_css : "/styles/tinymce_word.css",
	theme_advanced_toolbar_location : "top",
	theme_advanced_statusbar_location : "bottom",
	theme_advanced_path : false,
	theme_advanced_resizing : true,
	onchange_callback: function(editor) {
		tinyMCE.triggerSave();
		$("#" + editor.id).valid();
	}

});


