/*
* All we have to do is add the .disable-hover class to the body when the user begins to scroll.
* This then allows the users cursor to pass through the body and thus disable any hover effects.
*/
var body = document.body,
timer;
window.addEventListener('scroll', function() {
clearTimeout(timer);
if(!body.classList.contains('disable-hover')) {
body.classList.add('disable-hover')
}
timer = setTimeout(function(){
body.classList.remove('disable-hover')
},500);
}, false);