function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
function eqHeight(a, b, c) {
	tallest = 0;
	theA = $(a).height();
	theB = $(b).height();
	if (theA > theB) {
		tallest = theA;
		b.height(tallest);
	}
}
//$(document).ready(function() {
//	equalHeight($(".column"));
//});

