$(function() {

  var options = { language : 'de', skin : 'office2003', height : '400', baseHref : 'http://www.ziebarthgmbh.de/', basePath : 'http://www.ziebarthgmbh.de/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); 

  });

  $( 'textarea.rte_html' ).ckeditor(function(){}, options);

});
