Skip Navigation Website Accessibility
 


D'Addario VENN Bb Clarinet Reed, G2, Strength 2.5

available at

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

D'Addario VENN Generation 2: an advanced synthetic reed constructed of polymer fibers, resin, and natural cane elements. Designed to give players the benefits of synthetic reeds without compromising on the sound and playability of cane reeds.

// === 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'; }