$(document).ready(function() {

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

});
