Contact

Location

4460 N Gretna Rd.
Branson, MO 65616

Phone: (417) 334-4900

Email : derek@neillshomestore.com

Hours:

Monday - Saturday: 9:00 am - 6:00 pm

Sunday: Closed

How can we help you?

// Save scroll position before leaving page document.addEventListener('DOMContentLoaded', function() { // Save scroll position when clicking product links const productLinks = document.querySelectorAll('a[href*="/products/"]'); productLinks.forEach(link => { link.addEventListener('click', function() { sessionStorage.setItem('scrollPosition', window.scrollY); sessionStorage.setItem('scrollPage', window.location.href); }); }); // Restore scroll position when returning if (sessionStorage.getItem('scrollPage') === window.location.href) { const savedPosition = sessionStorage.getItem('scrollPosition'); if (savedPosition) { window.scrollTo(0, parseInt(savedPosition)); sessionStorage.removeItem('scrollPosition'); sessionStorage.removeItem('scrollPage'); } } });