Skip Navigation Website Accessibility
 


Frozen 2 Piano/Vocal/Guitar Songbook

available at

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

The sequel to the uber-popular Disney film Frozen is here, and the soundtrack features more songs from Robert Lopez & Kristen Anderson-Lopez. Our matching songbook includes fantastic color photos from the film, the new breakout song “Into the Unknown,” a continuation from the first film, “Reindeers Are Better Than People,” and 6 more new songs: All Is Found • Lost in the Woods • The Next Right Thing • Show Yourself • Some Things Never Change • When I Am Older.

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