$(document).ready(function() {
    // Enable the slide show
    $('.slideshow').cycle({
        fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
        timeout: 11000, // milliseconds between slide transitions (0 to disable auto advance)
        speed: 1000 // speed of the transition (any valid fx speed value)
    });
});