$(document).ready(function() {
	$("#column2 div:last, #column3 div:last, #recent_posts ul li:last, #recent_comments ul li:last, #twitter p:last, #content_inner .post:last, #commentlist li:last").css('border-bottom','none');

	var content_height = $("#content").height();
	var column2_height = $("#column2").height() + 156;
	var column3_height = $("#column3").height() + 262;
	
	var max = (content_height > column2_height) ? content_height : column2_height;
	var max = (max > column3_height) ? max : column3_height;
	
	$("#content").css('height', max);
	$("#column2").css('height', max-156);
	$("#column3").css('height', max-262);

});