
// custom easing called "custom"
$.easing.custom = function (x, t, b, c, d) {
	var s = 1.70158; 
	if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
	return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
}
$(document).ready(function(){
    // use the custom easing
    $(".scroll-3").scrollable({
		clickable: false,
        horizontal: true,
        size: 3,
        easing: 'custom',
        speed: 1200,
		keyboard: 'static'
		//items:'.social-links',
		
    })					
    //.circular()
	//.mousewheel(500)
	//.autoscroll({
    //    interval: 3000,
    //    autoplay: true,
    //});
    
});

