Skip Navigation Website Accessibility
 


Evans Min-EMAD Tom and Snare Damping

available at

Low in-store inventory, may be subject to change.

Evans Min-EMAD (Externally Mounted Adjustable Damping) suppresses unwanted overtones, but retains the desired attack, tone, and feel. By linking the vibrating head with the counter hoop, the Min-EMAD removes frequencies by resisting the motion of the head.

// === GLOBAL NAV BEHAVIOR FOR MARICH MUSIC === // --- DROPDOWN ON HOVER (DESKTOP ONLY) --- document.addEventListener('DOMContentLoaded', function () { const dropdowns = document.querySelectorAll('.dropdown'); dropdowns.forEach(drop => { drop.addEventListener('mouseenter', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'block'; }); drop.addEventListener('mouseleave', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'none'; }); }); }); // --- TOGGLE CUSTOM NAV ON MOBILE --- function toggleMobileNav() { const nav = document.querySelector('.menubg'); if (!nav) return; const isVisible = window.getComputedStyle(nav).display !== 'none'; nav.style.display = isVisible ? 'none' : 'flex'; }