$(document).ready(function(){
	if($('#clientele').length > 0)
	{
		var $news = $('#clientele');//we'll re use it a lot, so better save it to a var.
		$news.serialScroll({
			items:'div',
			duration:200,
			force:true,
			axis:'y',
			easing:'linear',
			interval:5000,
			cycle:true,
			step:1
		});
			
	} 
});
