(function ($) {
  $(window).load(function() {
    var sidebarLeft = $('.panel-region-sidebar-left .inside');
    var content = $('.panel-region-content .inside');
    var sidebarRight = $('.panel-region-sidebar-right .inside');
    var heights = new Array(sidebarLeft.height(), content.height(), sidebarRight.height());
    var maxHeight = Math.max.apply(Math, heights);
    sidebarLeft.css('min-height', maxHeight);
    sidebarRight.css('min-height', maxHeight);
  });
})(jQuery);
;

