/* ars navigandi GmbH - arscms */
/* /styles/js/jquery.edinger.js */

/* begin equalize heights *******************************************************/
/* remap jQuery to $ */
(function(){
  jQuery.fn.equalizeHeights = function(){
    return this.height( Math.max.apply(this, jQuery(this).map(function(i,e){ return jQuery(e).height() }).get() ) )
  }
})(this.jQuery);

jQuery(document).ready(function(){
  jQuery('.c66l, .c33r').equalizeHeights();
});

/* end equalize heights *********************************************************/
