$(document).ready(function() {
		$(".fancyYoutube").click(function() {
		$.fancybox({
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'width'			: 640,
				'height'		: 385,
				'overlayOpacity': .75,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
				'type'			: 'swf',
				'swf'			: {
					'wmode'		: 'transparent',
					'allowfullscreen'	: 'true'
				}
				   });
		return false;
		});
});



