/**
 * Скрипт для выравнивания столбцов на главной
 */
$(document).ready(function(){
	function align_columns() {
		$('.m-index .b-main-content .l-column_left__in .b-standard-box').height('auto');
		$('.m-index .b-main-content .l-column_center__in').height('auto');
		$('.m-index .b-main-content .l-column_right__in .b-standard-box').height('auto');
		var max_heigth = Math.max(
			$('.m-index .b-main-content .l-column_left__in .b-standard-box').height(),
			$('.m-index .b-main-content .l-column_center__in').height(),
			$('.m-index .b-main-content .l-column_right__in .b-standard-box').height()
		);
		$('.m-index .b-main-content .l-column_left__in .b-standard-box').height(max_heigth);
		$('.m-index .b-main-content .l-column_center__in').height(max_heigth);
		$('.m-index .b-main-content .l-column_right__in .b-standard-box').height(max_heigth);
		
		// $('.m-index .b-main-content .l-column_left__in .b-standard-box').css('border', 'solid #' + Math.round( Math.random() * 100 ) + '' + Math.round( Math.random() * 100 ) + '' + Math.round( Math.random() * 100 ) + ' 2px');
		// $('.m-index .b-main-content .l-column_center__in').css('border','solid blue 2px');
		// $('.m-index .b-main-content .l-column_right__in .b-standard-box').css('border','solid red 2px');
	}
	align_columns();
	align_columns();
	$(window).resize(function() {
		align_columns();
		align_columns();
	});
});
