$(document).ready(function(){

$("a[rel=fotogalerie]").fancybox({
		'overlayColor'		: '#000',
		'overlayOpacity'	: '0.9',
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titlePosition' 	: 'over',
		'titleFormat'			: function(title, currentArray, currentIndex, currentOpts){
												return '<span id="fancybox-title-over">Obrázek ' + (currentIndex + 1) + ' z ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
												}
		});
	
	$("a.zoom").fancybox({
		'overlayColor'		: '#000',
		'overlayOpacity'	: '0.9',
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titlePosition' 	: 'over',

		//skrývání nadpisku
	  'onComplete'			:	function(){	
		$("#fancybox-wrap").hover(function(){
		$("#fancybox-title").show(); }, function(){ $("#fancybox-title").hide(); });
		}
		});


$(".ytw").click(function(){
	$.fancybox({
		'overlayColor'		: '#000',
		'overlayOpacity'	: '1.0',
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',

		'padding'				: 0,
		'autoScale'			: false,

		'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;
});

});

