$JQ = $;
$JQ(function() {
    $JQ('#slideshow1').cycle();
    
    $JQ('#slideshow2').cycle({
        prev:   '#prev',
        next:   '#next',
        timeout: 0
    });
    
    $JQ('#slideshow3').cycle({
        delay: 2000,
        speed: 2500,
        before: onBefore
    });
    
    function onBefore() {
        $JQ('#title').html(this.alt);
    }
});



