$(document).ready(function() {
	$('#testimonials .slide').eq(0).fadeIn(500);
	setInterval(function() {
		$('#testimonials .slide').filter(':visible').fadeOut(1500, function() {
			if ($(this).next('li.slide').size()) {
				$(this).next().fadeIn(1000);
			}
			else {
				$('#testimonials .slide').eq(0).fadeIn(1000);
			}
		});
	}, 8500);
	// COLORBOX MODALS
	$('.homeVideo').colorbox({ iframe: true, innerWidth: 650, innerHeight: 370 });
}); 
