function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight+20;
		}
	});
	group.height(tallest);
}
$(document).ready(function() {
	equalHeight($(".column"));
	$("#navigation ul li:last").addClass("last");
	$(".footer-link ul li:last").addClass("last");
	$("#contact-form input[type='text']").addClass('text');
	$("#contact-form textarea").addClass('long-desc');
	$("#contact-form input[type='submit']").addClass('button');
});



