jQuery(document).ready(function($) {
	$('.b_DoubleContent').each(function() {

		var $c = $(this);
		var one	= $c.find('.ColumnOne');
		var two	= $c.find('.ColumnTwo');

		if (one.height() > two.height()) {
			two.height(one.height());
		} else {
			one.height(two.height());
		}

		$c.find('.col').css('border', 'none');
	});
});
