This is my version of setting blocks in the same hight... For example you have a divthat contains divs with the name "col"
$('.col').parent().each(function() {
var height = 0,
column = $(this).find('.col');
column.each(function() {
if ($(this).height() > height) height = $(this).height();
});
column.height(height);
});