$(document).ready(function() {
    $(".services #first, .meet #first, .insurance #first, .faq #first, .pinfo #first, .contact #first, .home #first").cycle({
		fx: 'fade',
		random: 1,
		timeout: 6000 // 6 sec
	});
	$(".services #second, .meet #second, .insurance #second, .faq #second, .pinfo #second, .contact #second, .home #second").cycle({
		fx: 'fade',
		random: 1,
		timeout: 6000,
		delay: -2000 // 4 sec
	});
	$(".services #third, .meet #third, .insurance #third, .faq #third, .pinfo #third, .contact #third, .home #third").cycle({
		fx: 'fade',
		random: 1,
		timeout: 9000,
		delay: -1000 // 8 sec
	});
	$(".services #fourth, .meet #fourth, .insurance #fourth, .faq #fourth, .pinfo #fourth, .contact #fourth, .home #fourth").cycle({
		fx: 'fade',
		random: 1,
		timeout: 10000,
		delay: -1000 // 9 sec
	});
});

