jQuery(function($) {
    // Add the fancybox event
    $('.video-content a').each(function(){
        $(this).fancybox({
            padding: 0,
            overlayColor: '#000',
            overlayOpacity: .84,
            transitionIn: 'none',
            transitionOut: 'none',
            href: $(this).attr('href'),
            type: 'swf',
            swf: {
                wmode: 'transparent',
                allowfullscreen: 'true',
                allowscriptaccess: 'always'
            }
        });
    });

});
