Broker Check

Tactical Asset Allocation Guide | March 2026

` $('.dev-wistiaVideo div[data-image="side-by-side-container"]').append($(wistiaVideo)); // ------------------------------ // Animate numbers // ------------------------------ function animateNumber(target, elementId, duration, decimal) { let current = 0; const step = target / (duration / 50); const counterElement = document.getElementById(elementId); const interval = setInterval(() => { current += step; if (current >= target) { current = target; clearInterval(interval); } counterElement.textContent = decimal ? Math.round(current * 10) / 10 : Math.floor(current); }, 50); } const observer = new IntersectionObserver((entries, observer) => { entries.forEach(entry => { if (entry.isIntersecting) { animateNumber(2014, 'animated-number1', 1000); animateNumber(51, 'animated-number2', 1000); animateNumber(2, 'animated-number3', 1000, true); animateNumber(9, 'animated-number4', 1000); observer.unobserve(entry.target); } }); }, { root: null, rootMargin: '0px', threshold: 0.5 }); const targetSection = document.querySelector('.dev-animatedNumbers'); observer.observe(targetSection);