$(window).load(function () {				
	var el1 = $('#js-about').outerHeight();
	var el2 = $('#js-descr').outerWidth();
	$('#js-descr').height(el1);
	$('#js-about').width(el2);
});
$(window).resize(function() {
	var el1 = $('#js-about').outerHeight();
	var el2 = $('#js-descr').outerWidth();
	$('#js-descr').height(el1);
	$('#js-about').width(el2);
});
