function equalHeight(group) {
    var tallest = 0;
    var LCOL = document.getElementById("l-col");
    var CONT = document.getElementById("cont");
    if ($(CONT).height() < $(LCOL).height()) {
        group.each(function() {
            var thisHeight = $(this).height();
            if (thisHeight > tallest) {
                tallest = thisHeight;
            }
        });
        group.height(tallest);
    }
}
