jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
    return -c * ((t=t/d-1)*t*t*t - 1) + b;
};

jQuery(function( $ ){
    $('#podium').serialScroll({
        target:'#sections2',
        items:'li', 
        prev:'.prev2',
        next:'.next2',
        axis:'xy',
        duration:700,
       // interval:7000,
        force:true, 
        lock:false,
                
        onBefore:function( e, elem, $pane, $items, pos ){
            e.preventDefault();
            if( this.blur )
                this.blur();
        },
        onAfter:function( elem ){
            //'this' is the element being scrolled ($pane) not jqueryfied
        }
    });
	
	$('#hotpocket').serialScroll({
        target:'#sections',
        items:'li', 
        prev:'.hotpocketPrev',
        next:'.hotpocketNext',
        axis:'xy',
        duration:700,
       // interval:7000,
        force:true, 
        lock:false,
                
        onBefore:function( e, elem, $pane, $items, pos ){
            e.preventDefault();
            if( this.blur )
                this.blur();
        },
        onAfter:function( elem ){
            //'this' is the element being scrolled ($pane) not jqueryfied
        }
    });
	
	$('#intercasa').serialScroll({
        target:'#sections',
        items:'li', 
        prev:'.intercasaPrev',
        next:'.intercasaNext',
        axis:'xy',
        duration:700,
       // interval:7000,
        force:true, 
        lock:false,
                
        onBefore:function( e, elem, $pane, $items, pos ){
            e.preventDefault();
            if( this.blur )
                this.blur();
        },
        onAfter:function( elem ){
            //'this' is the element being scrolled ($pane) not jqueryfied
        }
    });
	
	$('#fiat').serialScroll({
        target:'#sections',
        items:'li', 
        prev:'.fiatPrev',
        next:'.fiatNext',
        axis:'xy',
        duration:700,
       // interval:7000,
        force:true, 
        lock:false,
                
        onBefore:function( e, elem, $pane, $items, pos ){
            e.preventDefault();
            if( this.blur )
                this.blur();
        },
        onAfter:function( elem ){
            //'this' is the element being scrolled ($pane) not jqueryfied
        }
    });
	
	$('#nextel').serialScroll({
        target:'#sections',
        items:'li', 
        prev:'.nextelPrev',
        next:'.nextelNext',
        axis:'xy',
        duration:700,
       // interval:7000,
        force:true, 
        lock:false,
                
        onBefore:function( e, elem, $pane, $items, pos ){
            e.preventDefault();
            if( this.blur )
                this.blur();
        },
        onAfter:function( elem ){
            //'this' is the element being scrolled ($pane) not jqueryfied
        }
    });
	
	$('#m33').serialScroll({
        target:'#sections',
        items:'li', 
        prev:'.m33Prev',
        next:'.m33Next',
        axis:'xy',
        duration:700,
       // interval:7000,
        force:true, 
        lock:false,
                
        onBefore:function( e, elem, $pane, $items, pos ){
            e.preventDefault();
            if( this.blur )
                this.blur();
        },
        onAfter:function( elem ){
            //'this' is the element being scrolled ($pane) not jqueryfied
        }
    });
});


