$JQ = $;

$JQ(function() {

    $JQ('#slideshow1').cycle();

    

    $JQ('#slideshow2').cycle({

        prev:   '#prev',

        next:   '#next',

        timeout: 0

    });

    

    $JQ('#slideshow3').cycle({

        delay: 6000,

        speed: 6500,

        before: onBefore

    });

    

    function onBefore() {

        $JQ('#title').html(this.alt);

    }

});







