Skip Navigation Website Accessibility
 


Foo Fighters - Greatest Hits

available at

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

The Foos released a hit-packed career retrospective in 2009. This matching folio features piano/vocal/guitar arrangements for 15 tunes, including two new songs – “Wheels” and “Word Forward” – and: All My Life • Best of You • Big Me • Breakout • Everlong • Learn to Fly • Long Road to Ruin • Monkey Wrench • My Hero • The Pretender • Skin and Bones • This Is a Call • Times like These.

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