$(document).ready(function () {
	$('.tx-webx-feratel-infrastructure .btnTab').on('click', function () {
		var wrap = $(this).closest('.tx-webx-feratel-infrastructure');
		wrap.find('.btnTab').removeClass('active');
		$(this).addClass('active');
		wrap.find('.infrastructures-content .infrastructures-content__item').addClass('hide');
		wrap.find('.infrastructures-content .infrastructures-content__item.' + $(this).data('type')).removeClass('hide');
		scrollTable();
	});
});