﻿$(function(){
    var newsitems = $("div.contentnews div.newsitem")
    var heights = $.map(newsitems,function(n){
        return $(n).height();
    })
    var maxheight = Math.max.apply( Math, heights);
    $("div.contentnews div.newsitem").height(maxheight);
})

