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

