$(document).ready(function(){
var h_max = 0;
$('div.top_list div.block').each(function(index) {
  if ($(this).height() > h_max) h_max = $(this).height();
});
$('.top_list div.block').height(h_max) ;
});
