
jQuery.noConflict();
jQuery(matchColumnHeights);


function matchColumnHeights() {
	var colh = 0;
	var cols = jQuery('div[class*=column]');
	jQuery(cols).each(function() {
		if (jQuery(this).height() > colh) {
			colh = jQuery(this).height();
		}
	});
	jQuery(cols).each(function() {
		jQuery(this).css('min-height', colh + 'px');
	});
}
