$(function() {
    start_cycle_slideshow();
});

function start_cycle_slideshow() {
    var obj = $('.slideshow');
    var slideshow_width = obj.width();

    obj.cycle({
        fx: 'fade'  // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    });
}

