		$(window).load(function() {
		    // general
		       $("#content-sidebar, div.future-proof").equalizeCols(); 
		       
		       // increase height by 90 padding in div.future-proof, minus 372 for images above, so reduce overall by 282
               $("#content-sidebar").height(($("#content-sidebar").height()-282));
			
		});
		
		
jQuery.fn.equalizeCols = function(){
  var height = 0;
  return this.css("height","auto").each(function(){
    //remove 90 for the padding found in div.future-proof
    height = Math.max( height, (jQuery(this).outerHeight()-90) );
  }).css("height", height);

}; 		

