$(document).ready(function () {

    //slider for testimonials on home page
    $('.testimonialSlider').bxSlider({
        auto: true,
        pause: 7000,
        controls: false,
        pager: true
    });

    //header slider on home page
    function bigSlider() {
        $(".slider").slideshow({
            transition: 'fade',
            width: 950,
            height: 345,
            duration: 600,
            delay: 6000,
            pauseOnHover: false,
            pauseOnClick: false
        });

    }

    //fancybox for youtube movie on slider
    $("a.lightBox").fancybox({
        'padding': 0,
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'title': this.title,
        'width': 680,
        'height': 495,
        'type': 'swf',    // <--add a comma here
        'swf': { 'allowfullscreen': 'true'} // <-- flashvars here                  
    });

    bigSlider();

});
