Unions & Establishment

document.querySelectorAll('.wheel-hotspot').forEach((hotspot, index) => { hotspot.addEventListener('mouseenter', () => { // Swap to the section-specific image document.getElementById('wheel-image').src = `https://edreform.com/wp-content/uploads/2025/04/wheel-section-${index + 1}.png`; }); hotspot.addEventListener('mouseleave', () => { // Return to the base wheel image document.getElementById('wheel-image').src = 'https://edreform.com/wp-content/uploads/2025/04/wheel-base.png'; }); });