$(function fixLayout(){
	$('.two-columns').each(function(){
		var holder = $(this);
			columns = holder.find('div.column');
			maxHeight = false;
		columns.each(function(){
			if (maxHeight <= $(this).height()) maxHeight = $(this).height();
		})
		columns.height(maxHeight);
	})
})
