954 Mink Circle North Salt Lake City UT 84054

document.addEventListener("scroll", function() { const img = document.querySelector(".fade-in-header-img"); if (!img) return; if (window.scrollY > 200) { img.classList.add("show"); } else { img.classList.remove("show"); } });