function resizeConcernCols()
{
	var wrappers = jQuery('ul.ColumnWrapper');
	wrappers.each(function()
		{
			var w = jQuery(this);
			resizeBoxes(w.find('.ColumnBanner').not('.Concern'));
			resizeBoxes(w.find('.SectionDescription'));
		});
}

function resizeBoxes(boxes)
{				
	var mH = 0;
	boxes.each(function()
		{
			if(parseInt(jQuery(this).height()) > mH)
				mH = jQuery(this).height();
		})
		.css('height', mH + 'px')
}

jQuery(function(){
	resizeConcernCols();
})
