$(function() {	   
	
	$(".show-video").click(function() {
	$.fancybox({
			'padding'			: 0,
			'overlayColor'		: '#000',
			'overlayOpacity'	: .5,
			'autoScale'			: false,
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'speedIn'			: 500,
			'speedOut'			: 500,
			'titleShow'			: false,
			'width'				: 640,
			'height'			: 385,
			'href'				: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'				: 'swf',
			'swf'				: {
			'wmode'				: 'transparent',
			'allowfullscreen'	: 'true'
			}
		});

	return false;
	
});
	
});
