$(document).ready(function() {
    $(".fancybox").click(function() {
        
        $.fancybox({
            'padding' : 0,
            'autoScale' : false,
            'transitionIn' : 'none',
            'transitionOut' : 'none',
            'title' : '',
            'width' : 640,
            'height' : 360,
            'href' : this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1')+'&amp;fullscreen=1&amp;autoplay=1',
            'type' : 'swf',
            'swf' : {
                'wmode'	: 'transparent',
				'allowfullscreen' : 'true' 
            }
        });
        
        return false;
    });
});
