var setupTabSwitcher=function(c,a,f){document.querySelectorAll(c).forEach(function(b){var d=b.querySelectorAll(a),c=b.querySelectorAll(f);d.forEach(function(a){a.addEventListener("click",function(){var a=this.getAttribute("data-tab");a=b.querySelector("#"+a);c.forEach(function(a){a.style.display="none"});d.forEach(function(a){a.classList.remove("active")});a.style.display="block";this.classList.add("active");this.scrollIntoView({behavior:"smooth",block:"nearest",inline:"center"})})});var e=b.querySelector(a), g=e.getAttribute("data-tab");b.querySelector("#"+g).style.display="block";e.classList.add("active")})};