$(window).load(function() {
	// Fix column 1 widget height
	var $col2Widgets = $(".column2 .widget");
	var targHeight = $col2Widgets.eq($col2Widgets.index($col2Widgets.last()) - 1).height() + $col2Widgets.last().outerHeight(true); // second-to-last and last widget heights
	if ($(".col1Widgets").height() < targHeight - 23) {
		$(".col1Widgets").height(targHeight - 23);
	}
});

