$(document).ready(function(){
	$('.customers ul');
	setInterval(function(){
		$('.customers ul').filter(':visible').fadeOut(500,function(){
			if($(this).next('ul').size()){
				$(this).next().fadeIn(500);
			}
			else{
				$('.customers ul').eq(0).fadeIn(500);
			}
		});
	},5000);	
});	
