
$(document).ready(function()
{
			$("a[rel=gallery]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'outside',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Obrázok ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
			$("a.referencie").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'outside',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Obrázok ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
			
	$("#rezervacia").click(function() {
		$("#rezervaciaBox").show();
	});
	
	$("#validateForm").validate({meta: "validate"});
	$("#validateFormLogin").validate({meta: "validate"});
	$("#validateContactForm").validate({meta: "validate"});
	
   	$("#znacky a").hover(function(){
		$(this).parent().find("#roll").animate({height: 'show', opacity: 'show'}, 'slow');
		})
   	$("#content, #header").mouseout(function(){
		$(this).parent().find("#roll").animate({height: 'hide', opacity: 'hide'}, 'slow');
		})
		
	$("#popup").fancybox({
		'width'				: '75%',
		'height'			: '100%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

});


