$(document).ready(function() {
	$("ul.gallery a").attr({rel:"gallery"});
	$("ul.gallery a").fancybox({
//		'titleShow'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition' : 'over',
		'titleFormat'	: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Zdjęcie ' + (currentIndex + 1) + ' z ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});

	$("#menu > ul > li:has(ul)").addClass("dropdown");
	$('#menu ul ul').hide();
	$('#menu > ul > li').hover(
		function()
		{
			$(this).children('ul').hide().animate({
				opacity: 'show',
				height: 'show'
			}, 350);
		},
		function()
		{
			$(this).children('ul').stop(true, true).hide();
		}
	);
});
