$(document).ready(function() {
	
	// REF: http://jquery.malsup.com/cycle/options.html
	/* cycles through listings on home-page */
	$('#banner-gallery-items').cycle({
		fx: 		'fade', 	// name of transition effect (or comma separated names, ex: fade,scrollUp,shuffle) 
		timeout:	4000, 		// milliseconds between slide transitions (0 to disable auto advance) 
		delay:		0,			// additional delay (in ms) for first transition (hint: can be negative) 
		speed: 		1500		// speed of the transition (any valid fx speed value) 
	});
	   
	
});

