$(document).ready(function() {
	$("a.fancyphoto").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	200, 
		'speedOut'		:	200,
		'titlePosition' :   'over',
		'overlayOpacity':   '0.2'
	});
	$("a.fancytube").click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	:	'fade',
				'transitionOut'	:	'fade',
				'speedIn'		:	200, 
				'speedOut'		:	200,
				'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;
	});
	
});
	
	
