$(document).ready(function() {
 $('.slideshow').cycle({
 fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
 speed:    1000, // defines the number of milliseconds it will take to transition from one slide to the next.
 timeout:  1000, // specifies how many milliseconds will elapse between the start of each transition
 pause: 1, // so that pauses when user hovers over a slide
 });
});


