function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest+200);
}
$(document).ready(function() {
	equalHeight($("#wrapper"));
	var height = $("#container").height();
	$("body").height(height+"px")
});
