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

/*
window.addEvent('load', function() 
{
        var columns = $$('.fcol');
        var max_height = 0;
        
        columns.each(function(item) 
        { max_height = Math.max(max_height, item.getSize().size.y); });
        
        columns.setStyle('height', max_height);
});
*/

