
function filmYT(url) {
	$.fancybox({
			   		'overlayOpacity': 0.85,
					'overlayColor'	: '#2D0D06',
					'speedIn'		: '600',
					'speedOut'		: '100',
					'padding'		: 0,
					'autoScale'		: false,
					'titlePosition'	: 'outside',
					'titleShow'		: true,
					'title'			: 'Restauracja Joker',
					'width'			: 700,
					'height'		: 421,
					'href'			: url.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
}

function film() {
	filmYT('http://www.youtube.com/watch?v=0jEAhCnWv_M&amp;hl=pl_PL&amp;fs=1?rel=0&amp;hd=1&amp;autoplay=1');	
}


$(document).ready(function() {
	
	$("a#example1").fancybox({
		'titleShow'		: false
	});
			
			
	$("a#film").click(function() {	
		$("a#film").fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'titleShow'		: false,
			'width'			: 700,
			'height'		: 421,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
				'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});
		return false;
	});
			
	$("a#film").fancybox({
					 
	});
});




// http://www.youtube.com/watch?v=0jEAhCnWv_M&amp;hl=pl_PL&amp;fs=1?rel=0&amp;hd=1&amp;autoplay=1
// <a id="film" href="http://www.youtube.com/watch?v=0jEAhCnWv_M&amp;hl=pl_PL&amp;fs=1?rel=0&amp;hd=1&amp;autoplay=1" title="film">film</a>

/*
$("#film").click(function() {
	$("#film").fancybox({
			'padding'		: 0,
			'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;
});
*/


