Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
document.addEventListener('DOMContentLoaded', function () {
window.addEventListener('scroll', function () {
if (window.scrollY > 50) {
document.body.classList.add('scrolled');
} else {
document.body.classList.remove('scrolled');
}
});
});