﻿$(function() {
	var leftBottom = $(".AboutBottomLeftBox .HtmlContentBox");
	var leftBottomHt = leftBottom.height();
	var rightBottom = $(".AboutBottomRightBox")
	var rightBottomHt = rightBottom.height();

	// TODO: I have no idea why I need the offsets. :-0

	if (leftBottomHt > rightBottomHt) {
		rightBottom.height(leftBottomHt + 4);
	} else if (leftBottomHt < rightBottomHt) {
		leftBottom.height(rightBottomHt + 4);
	}
});
