<script type="text/javascript">
$(document).ready(function(){
$.fn.equalizeHeights = function() {
var maxHeight = this.map(function(i,e) {
return $(e).height();
}).get();
return this.height( Math.max.apply(this, maxHeight) );
};
$(".one-block-news-txt").equalizeHeights();
});
</script>