jQuery(function(){
$(".fancy-video").click(function(event) {
	$.fancybox({
			'padding'		: 0,
			'overlayColor'	: '#000',
			'overlayOpacity': 0.6,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
	});
	return false;
});
$("a.single_image").fancybox({
	'titleShow' : false
});
$("a.inline").fancybox({
	'width' : 850,
	'height' : 700,
	'centerOnScroll' : true,
	'autoDimensions' : false
});
});
