var userAgent = navigator.userAgent;

$(function() {
	
	if(userAgent.indexOf("iPad") == -1) {
	
		$.easing.easeOutQuad = function (x, t, b, c, d) {
			return -c *(t/=d)*(t-2) + b;
		};

		$.localScroll({easing:'easeOutQuad',
					hash: true,
					onBefore:function() {isScrolling = true; $(document).stopTime("clientbox");},
					onAfter:function() {isScrolling = false; clientTimedSlideBox(); }
		});
	}
});



