jQuery(document).ready(function() {
$(".video").click(function() {
	$.fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titlePosition'    	: 'inside',
		'centerOnScroll'   	: 'true',
		'overlayOpacity'   	: '0.5',
		'overlayColor'     	: '#000000',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
		return '<span class="fancybox-title-over">' + (title.length ? '   ' + title : '') + '</strong></span>';
		},
		'title'			: this.title,
		'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
		'type'			: 'swf',
		'swf'			: {
			 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
});
});
