/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */

(function($) { 

$(document).ready(function(){
     $('.slideshow').cycle({ 
    fx:      'fade', 
	speed:	  1000,
	timeout:  8000,
	});
});
 })(jQuery)
