
jQuery(function( $ ){
	

	var $left1 = $('#left1');//prev button
	var $right1 = $('#right1');//next button


/********* Slide 6 **********/

	$('#slider').serialScroll({
		target:'#clients_list',
		items:'li', // Selector to the items ( relative to the matched elements, '#sections' in this case )
		prev:$left1,// Selector to the 'prev' button (absolute!, meaning it's relative to the document)
		next:$right1,// Selector to the 'next' button (absolute too)
		axis:'xy',// The default is 'y' scroll on both ways
		//navigation:'#navigation li a',
		duration:120,// Length of the animation (if you scroll 2 axes and use queue, then each axis take half this time)
		force:true, // Force a scroll to the element specified by 'start' (some browsers don't reset on refreshes)	
    queue:true,
    lazy:true,
    jump:true,
    constant:true,
		//jump:true, // If true, items become clickable (or w/e 'event' is, and when activated, the pane scrolls to them)
			start: 0, // On which element (index) to begin ( 0 is the default, redundant in this case )		
		//cycle:false,// Cycle endlessly ( constant velocity, true is the default )
		step:1 // How many items to scroll each time ( 1 is the default, no need to specify )

	
	});

});	



 

