$().ready(function() {
	$('textarea.rte').each(function(j) {
		if (j==0) {
      $.getScript("/fckeditor/fckeditor.js",function() {
        $("textarea.rte").each(function(i) {
          var rte_name = $(this).attr('name');
          var oFCKeditor = new FCKeditor(rte_name);
          oFCKeditor.BasePath='/fckeditor/';
          oFCKeditor.ToolbarSet='Better';
          oFCKeditor.Config['ToolbarCanCollapse']=false;
          oFCKeditor.Config['CustomConfigurationsPath']='/includes/fckconfig_my.js';
					oFCKeditor.Width = '400px';
					oFCKeditor.Height = '200px';

          oFCKeditor.ReplaceTextarea();
				});
			});
		}
	});
});

