jQuery(document).ready(function() {
    jQuery("a.ytfancybox").click(function() {
        jQuery.fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'elastic',
		'autoScale'		: false,
		'titleShow'		: false,
		'centerOnScroll'	: true,
		'speedIn' 		: 150,
		'speedOut'		: 150,
		'zoomSpeedIn'		: 300,
		'zoomSpeedOut'		: 300,
		'overlayShow'		: true,
		'overlayOpacity'	: 0.8,
		'overlayColor'		: "#000000",
		'autoScale'		: false,
		'width'			: 680,
		'height'		: 407,
                'href'                  : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
                'type'                  : 'swf',
                'swf'                   : {
                  'wmode'               : 'transparent',
                  'allowfullscreen'     : 'true'
                }
            });
        return false;
    });
});

