function sameHeight(className){
    var colheight = 0;
    $(className).each(function(){
        if ($(this).height()>colheight) colheight=$(this).height();
    }).css({height:colheight});
}
