/**
 * @depend jquery-1.3.2.js
 * @depend routes.js
 */
try {
    var pageTracker = _gat._getTracker("UA-61093-4");
    pageTracker._trackPageview();
} catch(err) {}

$(document).ready(function() {
    $('#cvs-large .row, #iconbox-list').each(function(){
        var row = $(this);
        var colHeight = 0;
        var columns = row.find('.box .content, .iconbox'); 
        columns.each(function(){
            var height = $(this).height();
            if( height > colHeight ) {
                colHeight = height;
            }
        });
        columns.css({
            height: colHeight + 'px'
        });
    });
});
