(function($) {
	$.fn.equalHeight = function() {
		var group = this;
		$(window).bind('resize', function(){
			var tallest = 0;
			$(group).height('auto').each(function() {
				tallest = Math.max(tallest, $(this).height());
			}).height(tallest);
		}).trigger('resize');
	}
})(jQuery)
	
$(document).ready (
	function() {
		$(".column1").equalHeight();
		$(".column2").equalHeight();
		$(".column3").equalHeight();
		$(".column4").equalHeight();
		$(".column5").equalHeight();
		$(".column6").equalHeight();
		$(".column7").equalHeight();
		$(".column8").equalHeight();
		$(".column9").equalHeight();
		$(".column10").equalHeight();
	}
);
