window.addEvent('domready', function() 
{
    var columns = $$('.col');
    var max_height = 0;
    
    columns.each(function(item) 
    { max_height = Math.max(max_height, item.getSize().y); });
    
    columns.setStyle('height', max_height);
});
