
jQuery(document).ready(function(){
       // Use it to attach the editor to all textareas with full featured setup
       //WYSIWYG.attach('all', full);
			
       // Use it to attach the editor directly to a defined textarea
       //WYSIWYG.attach('textarea1'); // default setup
       //WYSIWYG.attach('textarea2', full); // full featured setup
       //alert(document.getElementById("actualite_fr"));
       if(document.getElementById("actualite_fr")!=null){
          WYSIWYG.attach('actualite_fr', small); // small setup
          WYSIWYG.attach('actualite_en', small); // small setup
          WYSIWYG.attach('actualite_es', small); // small setup
       }
	   if(document.getElementById("message")!=null){
          WYSIWYG.attach('message', small); // small setup
       }	   
       // Use it to display an iframes instead of a textareas
       //WYSIWYG.display('all', full);
});  
