How to read Wheel Offsets
-->
window.onscroll = function() {
var sticky = document.getElementById('menu');
if( window.innerWidth > 799) {
if( document.body.scrollTop+document.documentElement.scrollTop > 145)
sticky.className = "navPages-container stuck";
else sticky.className = "navPages-container";
}
};
-->