/*
    Coded By Steven Bower
    TurnWheel Designs (cc) 2009
    http://turnwheel.com/
*/

$(function() {
    $.getScript('/js/jcarousellite_1.0.1.min.js',function() {
        $('.carousel').jCarouselLite({
            btnNext: '.carousel_next',
            btnPrev: '.carousel_prev',
            visible: $('.carousel li').length < 3 ? 2 : 4
        });
    });
    
    $.getScript('/js/jquery.lightbox-0.5.min.js',function() {
        $('.carousel a').lightBox({
            imageLoading: '/images/lightbox-ico-loading.gif',
            imageBtnClose: '/images/lightbox-btn-close.gif',
            imageBtnPrev : '/images/lightbox-btn-prev.gif',
            imageBtnNext : '/images/lightbox-btn-next.gif',
            imageBlank : '/images/lightbox-blank.gif'
        });
    });
});