$(window).load(function() {
    // check which side is higher and act appropriately
        if($(".contact-left-col").height() < ($("#firstRightContactCol").height()+$("#secondRightContactCol").height()))
        {
        $(".contact-left-col, .contact-right-columns").equalizeCols();   
        $(".contact-left-col").height($(".contact-left-col").height()-6);
       }
       else
       {
        $(".contact-left-col, #secondRightContactCol").equalizeCols();   
        // reduce height of second col by the height of the first
        $("#secondRightContactCol").height(($("#secondRightContactCol").height()-($("#firstRightContactCol").height()))-6);
       }
});
		
		
jQuery.fn.equalizeCols = function(){
  var height = 0;
  return this.css("height","auto").each(function(){    
    height = Math.max( height, (jQuery(this).outerHeight()));
  }).css("height", height);

}; 	
