jQuery().ready(function(){

	jQuery('textarea.tinymce').tinymce({
		// General options
		theme : "advanced",
		
		language : "fr",
		
		//Our custom css!
		content_css : "/my-plugins/gm-tiny-mce/css/tinymce_content.css",
		
		height : "180px",
		width : "505px",
		
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_buttons1 : "bold,italic,link,unlink",
		theme_advanced_buttons2 : "",
		theme_advanced_buttons3 : "",
		
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resizing : true,
		theme_advanced_resize_horizontal : false,
		theme_advanced_path : false,		
		
		//The following to ensure that no <p> is added by tiny mce (bbpress doesn't accept <p>)
		forced_root_block : false,
	    force_p_newlines : false,
	    remove_linebreaks : false,
	    force_br_newlines : true,
	    remove_trailing_nbsp : false,   
	    verify_html : false,
	    
	    //Add a keyup callback:
	    setup : function(ed) {
	      ed.onKeyUp.add(function(ed, e) {
	    	  //gm_forums_forms jQuery namespace is defined in the groupe moniteur 
	    	  //theme (see theme/js/gazette_forums_forms.js):
	    	  if( $.gm_forums_forms ){
	    		  $.gm_forums_forms.tinymce_keyup(ed,e);
	    	  }
	    	  
	    	  //gm_moderation jQuery namespace is defined in the groupe moniteur 
	    	  //gm-moderation-a-priori plugin (see plugins/gm-moderation-a-priori/js/gm_moderation_a_priori.js):
	    	  if( $.gm_moderation ){
	    		  $.gm_moderation.tinymce_keyup(ed,e);
	    	  }
	      });
	   	}

	});

});
