var maxHeight = function(classname) {
var divs = document.getElements('div.' + classname);
var max = 0;
divs.each(function(div) {
	var size=div.getSize();
	max = Math.max(max, size.y);
});
divs.setStyle('height', max);
return max;
}
window.addEvent('load', function() {
maxHeight('euqal');
maxHeight.delay(500, maxHeight, 'equal');
}); 
