
**All orders placed after 3:00pm will be available for
pick-up or delivery after 7:30am the next day.**
Download our catering menu
For additional assistance please email us at CateringSupport@bagelbrands.com
// This JS manipulates the header images so that they switch on scroll. window.addEventListener('scroll', function() { var scrollTop = window.pageYOffset || document.documentElement.scrollTop; var logoA = document.querySelector('.header-logo.a'); var logoB = document.querySelector('.header-logo.b'); if (scrollTop > 50) { logoA.style.display = 'none'; logoB.style.display = 'block'; logoB.classList.add('visible'); } else { logoA.style.display = 'block'; logoB.style.display = 'none'; logoB.classList.remove('visible'); } });