$(document).ready(function () {
	// adjust col heights so that they match?
	if ($('.jq-match-col-heights').length > 0) {
		if ($('.content-main').height() < $('.content-right').height()) {
			// increase height of main content if right column in longer
			$('.content-main .body .right:last').append($('<div>').height($('.content-right').height() - $('.content-main').height()));
		} else if ($('.content-right').height() < $('.content-main').height()) {
			// increase height of right column if main content is longer
			$('.content-right .body .right:last').append($('<div>').height($('.content-main').height() - $('.content-right').height()));
		}
	}
});