// See also: http://jquery.malsup.com/cycle
//           http://jquery.malsup.com/cycle/options.html
//
$(document).ready(function() {
	$('#home-slideshow').cycle({
		fx:			'fade', // simple fade transition type
		speed:		1800,	// speed of the transition
		timeout:	5500	// milliseconds between slide transitions
	});
});

