function equalHeight(group) {
    var hoehe = 0;
    group.each(function() {
        var thisHeight = $(this).height();
        if(thisHeight > hoehe) {
            hoehe = thisHeight + 5;
        }
    });


    
    group.each(function() {
        $(this).css('height', hoehe+"px");
    });
//    group.height(tallest);
}