$(document).ready(
	function() {
		$("ul.blevel").hide();
		$(".sectionheader .currentpage").parent().show("slow").addClass("dropped");
		$(".sectionheader").click(
			function() {
				$(".dropped").hide("slow").removeClass("dropped");
				if ( $(this).find("ul.blevel").css("display") == "none" ) {
					$(this).find(".blevel").show("slow").addClass("dropped");
				}
			}
		);
			
		$("a[rel='target']").click(
			function() {
        		var newWindow = window.open(this.href);
        		return false;
    		}
		);
	 
		$("a").attr('onfocus', 'blur()');
		
		
		$("#prawy #tekst .prezentacja td a").attr({'rel':'fancybox','title':'varia'});
		
		$("a[rel=fancybox]").fancybox({
				'titlePosition' 	: 'inside',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">' + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
	}
);
