/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Options at: http://jquery.malsup.com/cycle/options.html
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.86 (05-APR-2010)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 */
$(document).ready(function() {
    $('.slideshow').cycle({
		fx:		'fade',	// choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:	1500,	// The speed option defines the number of milliseconds it will take to transition from one slide to the next.
		pause:	1,		// The pause option causes the slideshow to pause when the mouse hovers over the slide.
		random:	1		// The random option causes the slides to be shown in random order, rather than sequential. 
	});
});
$(document).ready(function() {
    $('.slideshow-housing').cycle({
		fx:		'fade',	// choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:	1000,	// The speed option defines the number of milliseconds it will take to transition from one slide to the next.
		timeout:4000,  // milliseconds between slide transitions
		pause:	1,		// The pause option causes the slideshow to pause when the mouse hovers over the slide.
		random:	1		// The random option causes the slides to be shown in random order, rather than sequential. 
	});
});

