$(document).ready(function(){
	$("#homeTop").css('background-image', 'url(images/main-bgs/on-target-solutions.jpg)');
	
	$('#homeImages').cycle({ delay: 4500 });
	
	setTimeout(function(){
		$('#homeWords .words').each(function(i){
			$(this).delay(1000*(i+1)).animate({ marginLeft: 0 });
		});
	}, 500);
	
	$('.portfolio-cycle').cycle({
		timeout: 0,
		fx: 'scrollHorz', 
		next: '#portfolio-next',
		prev: '#portfolio-prev'
	});
});

