// http://jquery.malsup.com/cycle/pager3.html
// http://jquery.malsup.com/cycle/pager6.html
jQuery(document).ready(function($) {
	$( "#slideshow-home" ).cycle({
		fx: 'fade',
		speed: 300,
		timeout: 5000,
		pause: 1
	});
	$( '#slideshow-eye-candy' ).cycle({
		fx: 'scrollLeft',
		speed:   300,
		timeout: 120000,
		next:   '#slideshow-eye-candy',
		pause:   1
	});
	$( '#slideshow-in-business' ).cycle({
		fx: 'scrollLeft',
		speed:   300,
		timeout: 120000,
		next:   '#slideshow-in-business',
		pause:   1
	});
});
