$(document).ready(function() {
	
			$("a[rel*=fancy]").fancybox();
			
			$("a.realizacja").fancybox({ 'frameWidth': 830, 'frameHeight': 600, 'overlayColor': '#000', 'overlayOpacity': 0.9 });
			
			$(".otwarte").css("display", "block");
			
			$("#menuUl > li > a").click(function(event){
				if($(this).next().is("ul")) {
					if($(this).next().css("display") != 'none')
						$(this).next().slideUp(1000);
					else
						$(this).next().slideDown(1200,"easeOutBounce");
						
					event.preventDefault();
				}
			});
			
});
