$(document).ready(function()
{
	var maxHeight = 0;
	$(".column").each(function()
	{
		if($(this).height() > maxHeight) maxHeight = $(this).height();
	});
	$(".column").height(maxHeight);
});
