$(function() {
	$(window).load(function() {
		$('div.group').not($('.top .group')).each(function() {
			$('.block', this).height(
				Math.max($('.block.left', this).height(), $('.block.right', this).height())-2
			);
		});
	});
});