$(document).ready(function() {
var maxtop = 0,
$topperblock = $('.topper-block');
$topperblock.each(function(){
if($(this).height() > maxtop){
maxtop = $(this).height();
}
});
$topperblock.each(function(){
$(this).height(maxtop);
});
});