
window.addEvent('domready', function() {
    var videoShowcase = new Jp_Showcase($$('#intro-video ul.carousel li'), {
        delay: 4000, //time the case will be shown
        duration: 2000, //effect duration
        stopOnMouseOver: false,
        fadeImageOnly: false
    });
    
    new Jp_Lightbox($$('a.playVideo'), {
        append: 'ajax=1',
        onClose: function() {
            videoShowcase.next('cruise')
        }.bind(videoShowcase)
    });
});

