$(document).ready( function() {
    $('#slideshow').cycle({
        fx:    'fade',
        speed: 'slow',
        timeout: 5000
    });

    $('#videoSlideshow').cycle({ 
        fx:     'scrollHorz', 
        speed:  'slow', 
        timeout: 0, 
        next:   '#nextVideo', 
        prev:   '#prevVideo' 
    });

    $('#photoSlideshow').cycle({ 
        fx:     'scrollHorz', 
        speed:  'slow', 
        timeout: 0, 
        next:   '#nextPhoto', 
        prev:   '#prevPhoto' 
    });
});
