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);

	column_offset_y = max_height;
	if ( $('pagebody').hasClass('home') ) {
		column_offset_y = max_height - 1;	
	}

	columns.each(function(item,i){
		if ( i == 1 ) {
			item.setStyle('height', column_offset_y);
		} else {
			item.setStyle('height', max_height);
		}
	});

});

