function loadrichEditors(){
		/**************************************
			All TEXTAREAs that have the css
			class of 'fancyEdit' will be swapped
			out with a FCKeditor
		***************************************
			var sBasePath = "/lib/FCKeditor/"
			//var textareas = document.getElementsByClassName('fancyEdit');
			var textareas = document.getElementsByTagName('textarea');
			var oFCKeditor;
			var configPath;
			//textareas.each(function(editor){
			for (var i = 0; i < textareas.length; i++){
						editor = textareas[i];
						if(editor.className == "fancyEdit"){
							oFCKeditor = new FCKeditor( editor.name,'300','100%','CES' ) ;
							oFCKeditor.BasePath = sBasePath ;
							oFCKeditor.Config["CustomConfigurationsPath"] = "/lib/FCKeditorCES.js"  ;
							oFCKeditor.ReplaceTextarea() ;
						}
				//	});
			}*/
			
		}
