$(document).ready(function(){
    $("a.youtube-link").click(function(){
        $.fancybox({
            'padding' : 0,
            'showCloseButton' : true,
            'autoScale' : false,
            'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
            'type' : 'swf',
            'swf' : {'wmode' : 'transparent', 'allowfullscreen' : 'true'}
        });
        return false;
    });
    $("a.vimeo-link").click(function(){
        $.fancybox({
            'padding' : 0,
            'showCloseButton' : true,
            'autoScale' : false,
            'href' : this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
            'type' : 'swf',
            'swf' : {'wmode' : 'transparent', 'allowfullscreen' : 'true'}
        });
        return false;
    });
});
