$(function() {
	$('#slideshow1').cycle({
		fx: 'fade',
		timeout: 3500,	// milliseconds between slide transitions (0 to disable auto advance) 
		speed: 500,	// speed of the transition (any valid fx speed value) 
		sync: 1 		// true if in/out transitions should occur simultaneously 
	});
});

$(function() {
	$('#slideshow2').cycle({
		fx: 'fade',
		delay: 500,		// additional delay (in ms) for first transition
		timeout: 3500,	// milliseconds between slide transitions (0 to disable auto advance) 
		speed: 500,	// speed of the transition (any valid fx speed value) 
		sync: 1 		// true if in/out transitions should occur simultaneously 
	});
});

$(function() {
	$('#slideshow3').cycle({
		fx: 'fade',
		delay: 1000,		// additional delay (in ms) for first transition
		timeout: 3500,	// milliseconds between slide transitions (0 to disable auto advance) 
		speed: 500,	// speed of the transition (any valid fx speed value) 
		sync: 1 		// true if in/out transitions should occur simultaneously 
	});
});

$(function() {
	$('#slideshow4').cycle({
		fx: 'fade',
		delay: 1500,		// additional delay (in ms) for first transition
		timeout: 3500,	// milliseconds between slide transitions (0 to disable auto advance) 
		speed: 500,	// speed of the transition (any valid fx speed value) 
		sync: 1 		// true if in/out transitions should occur simultaneously 
	});
});

$(function() {
	$('#slideshow5').cycle({
		fx: 'fade',
		delay: 2000,		// additional delay (in ms) for first transition
		timeout: 3500,	// milliseconds between slide transitions (0 to disable auto advance) 
		speed: 500,	// speed of the transition (any valid fx speed value) 
		sync: 1 		// true if in/out transitions should occur simultaneously 
	});
});

$(function() {
	$('#slideshow6').cycle({
		fx: 'fade',
		delay: 2500,		// additional delay (in ms) for first transition
		timeout: 3500,	// milliseconds between slide transitions (0 to disable auto advance) 
		speed: 500,	// speed of the transition (any valid fx speed value) 
		sync: 1 		// true if in/out transitions should occur simultaneously 
	});
});

$(function() {
	$('#slideshow7').cycle({
		fx: 'fade',
		delay: 3000,		// additional delay (in ms) for first transition
		timeout: 3500,	// milliseconds between slide transitions (0 to disable auto advance) 
		speed: 500,	// speed of the transition (any valid fx speed value) 
		sync: 1 		// true if in/out transitions should occur simultaneously 
	});
});
