(function(jQuery) {
  jQuery.fn.equalHeights = function(minHeight, maxHeight) {
    tallest = (minHeight) ? minHeight : 0;
    this.each(function() {
      if (jQuery.browser.msie && jQuery.browser.version < 7) { jQuery(this).css("height", ""); }
      jQuery(this).css("min-height", "");
    });
    this.each(function() {
      if (jQuery(this).height() > tallest) {
        tallest = jQuery(this).height();
      }
    });
    if ((maxHeight) && tallest > maxHeight) tallest = maxHeight;
    return this.each(function() {
      if (jQuery.browser.msie && jQuery.browser.version < 7) { jQuery(this).css("height", tallest + "px"); }
      jQuery(this).css("min-height", tallest + "px");
    });
  }
})(jQuery);
jQuery(window).load(function() {
	jQuery("#leftcolumn, #rightcolumn, .contentpadboth, .contentpadleft, .contentpadright").equalHeights();

});