$(document).ready(function() {
	var tallest_items = $("#wealth, #checkout, #body_copy");
	var tallest = 0;
	tallest_items.each(function() {
		if($(this).height() > tallest) tallest = $(this).height();
	});
	tallest_items.css("height", tallest + "px");
});
