$(function() {

  var options_html = {  customConfig : 'config_special.js',
                        language : 'de',
                        skin : 'kama',
                        height : '600',
                        baseHref : 'http://www.3stepsfusion.eu/',
                        basePath : 'http://www.3stepsfusion.eu/mods/ckeditor/' }

  $(document).bind('csAjaxLoad', function(e,ele) {

    $(ele).find('textarea.rte_html').each(function() {
      var instance = CKEDITOR.instances[this.id];
      if(instance) {
          CKEDITOR.remove(instance);
      } 
    }).ckeditor(function(){}, options_html); 

  });

  $( 'textarea.rte_html' ).ckeditor(function(){}, options_html);

});

