function fix_cformBoxHeight() {
  var titles = $(".cf-box-title");
  for (var i=0; i<titles.length; i++) {
    var title = $(titles[i]);
    var items = $("#"+titles[i].id+"items");
    var titleH = title.height();
    var itemsH = items.height();
    if (itemsH > titleH) {
      title.height(itemsH);
    } else {
      items.height(titleH);
    }
  }
}

$(document).ready(
  fix_cformBoxHeight
);