$(document).ready(function(){
	// Раздвигаем колонки по высоте
	// если #left больше чем #main тогда #content сделать = #left - (#main - нынешний #content)
	// если #left меньше или равен #main ничего не делать
	$left_height = $('#left').height();
	$main_height = $('#main').height();
	$content_height = $('#content').height();
	if ($left_height > $main_height) {
		$result = $left_height - ($main_height - $content_height);
		$('#content').css('height', $result);
	} else {
		$result = $content_height;
	};
	if(document.getElementById('news-project')) {
		$('#news-project').height($result);
	};
	if(document.getElementById('anons')) {
		$('#anons').height($result);
	};
	
	// Убираем подчёркивание последних новостей в списке
	//$('.city-news .item:last').css({'border': 'none', 'padding-bottom': '0'});
	//$('.project-news .item:last').css({'border': 'none', 'padding-bottom': '0'});
	//$('.news .item:last').css({'border': 'none', 'padding-bottom': '0'});
});
