/* Equalize heights of columns */
$(document).ready(function() {
	$('#content .press-sub').each(function() {
		$('.float-left .item', this).each(function(index) {
			var right = $('.float-right .item', $(this).parents('.press-sub'));
			if (right[index]) {
				var max = Math.max(
					$(this).height(),
					$(right[index]).height()
				);
				$(this).css('height', max);
				$(right[index]).css('height', max);
			}
		});
	});
	
	$('#content .csc-textpic-intext-left,#content .csc-textpic-intext-right,').addClass('clearfix');
});
