$(document).ready(function () {
    
    // Fancybox Ini for all Lightbox Videos
    $(".videobox").fancybox({
        //maxwidth: 800,
        //maxHeight: 600,
        fitToView: false,
        //width: '90%',
        //height: '90%',
        height: 510,
        width: 853,
        autoSize: false,
        closeClick: false,
        openEffect: 'none',
        closeEffect: 'none'
    });

    // Replace a Video Image with a iframe
    $('a#videoTrigger').click(function (e) {
        e.preventDefault();
        $(this).hide(0);
        $('#videoToggle').show(0);
    });


    // Fancybox Ini for generic lightboxes (mostly text content)
    $(".fancybox").fancybox({
        fitToView: false,
        width: '50%',
        height: '75%',
        autoSize: false,
        closeClick: false,
        openEffect: 'none',
        closeEffect: 'none'
    });



}); // end docReady
