$(function() {
	delay = -1666;
	
	$('.gallery-images').each(function() {
		$(this).cycle({
			timeout: 5000,
			speed: 1000,
			delay: delay
		});

		delay += 1666;
	});
});
