// Set up the slideshow for the page
$(function() {
    // Create the slideshow cycle
    $(".cycle-gallery ul").cycle({
        timeout: 6000,
        speed: 2000,
        delay: 2000,
        fastOnEvent: 250,
        pause: 1,
        pager: ".cycle-pager",
        next: ".cycle-page-right",
        prev: ".cycle-page-left",
    });
});
