$(document).ready(function() {
	$('#group1').cycle({
		fx:     'fade',
		speed:   300,
		timeout: 10000,
		next:   '#group1',
		pause:   1,
		random: 1,
		delay: 0
	});
	
	$('#group2').cycle({
		fx:     'fade',
		speed:   300,
		timeout: 10000,
		next:   '#group2',
		pause:   1,
		random: 1,
		delay: 200,
	});
	
	$('#group3').cycle({
		fx:     'fade',
		speed:   300,
		timeout: 10000,
		next:   '#group3',
		pause:   1,
		random: 1,
		delay: 400,
	});
	
	$('#group4').cycle({
		fx:     'fade',
		speed:   300,
		timeout: 10000,
		next:   '#group4',
		pause:   1,
		random: 1,
		delay: 600,
	});
	
	$('#group5').cycle({
		fx:     'fade',
		speed:   300,
		timeout: 10000,
		next:   '#group5',
		pause:   1,
		random: 1,
		delay: 800,
	});
});
