jQuery(document).ready(function($) { MouseSmoothScroll(); }); function MouseSmoothScroll(){ isMac = /(mac)/.exec( window.navigator.userAgent.toLowerCase() ); if( isMac != null && isMac.length ) return false; jQuery.srSmoothscroll({ step: 120, speed: 800, ease: 'easeInOutSine', target: jQuery('body'), container: jQuery(window) }); }