All pastes #2070274 Raw Edit

Stuff

public text v1 · immutable
#2070274 ·published 2011-05-27 12:03 UTC
rendered paste body
window.addEvent('domready', function() {
    var maxH=0;


    $$('#whyList .whyBox').each(function(el, i){
        var tmp =0;
        tmp=$(el).getSize().x;
        if(tmp>maxH) {
            maxH=tmp;
        }
    });

    $$('#whyList .whyBox').each(function(el, i){
        $(el).css('height', maxH+'px');
    });
});