window.addEvent('domready', function() 
{
equalize();
});
function equalize(){
if (!$$('.equalize')){
return;
}
var columns = $$('.equalize');
var max_height = 0 ;		
columns.each(function(item) { max_height = Math.max(max_height, item.getSize().y); });

var phone_columns = $('phonepriv');
var phone_height = phone_columns.getSize().y;
if (phone_height){
	max_height = max_height + phone_height;
}
columns.setStyle('height', max_height);
}
