
	$(document).ready(function(){

		$('#clients').cycle({ 
		    fx:     'scrollHorz', 
		    speed:   300, 
		    timeout: 3000, 
		    pager:  '#clients-nav',
		    pause: 1
		});
		
		$('#title-fade').fadeIn(2000, function() {
		
			$('#text-fade').fadeIn(1000, function() {
			
				$('#bannerbtns').animate({ bottom:"0px" },1000);
			
			});
		
		});
		
	});
	
	function scrollTo(id) {
	
		$('html, body').animate({
			scrollTop: $(id).offset().top
		}, 1000);

	
	}
