(function($) {
   $.fn.equalHeights = function(minHeight, maxHeight) {

           
	 var h2 = $('#el2').height();
	 var h3 = $('#el3').height();
	 	 
	if(!h2){
		return;
	}
	if(h2 > h3){
		$('#nologo_news').height($('#nologo_news').height() + h2-h3 + 10);
	}	else{
	    $('#el2 .block_inside').height(h3 - 25);
	    
	}

   }
})(jQuery);
