$(function() {
    $('#menu ul.sf-menu').superfish();
    $('a.lightbox').lightbox();
    $('a.popup').lightbox();
    enableCyclePlugin();
});

function enableCyclePlugin()
{
    var slideshow_timeout = 3000;

    var $slideshow1 = jQuery('#slideshow').cycle({
        timeout:    0,
        speed:      1000,
        before:     changeCaption,
        pager:      '#thumbs',
        pagerAnchorBuilder: function(idx, slide) {
            return '#key-thumbs li:eq(' + idx + ') a';
        }
    });

    function setCaption(str) {
        jQuery('#caption').html(str);
    }

    function changeCaption() {
        jQuery('#caption').html(this.alt);
    }
}