$(document).ready(function(){
	$("[id^=dzial] .nag").click(function(){
		window.location.href = $(this).children(".mb").attr("href");
	});
	$("[id^=pozmen]").hover(
		function(){
			var id = $(this).attr("id").substr($(this).attr("id").length-1, 1);
			$("#dzial" + id + " .nag").addClass("nagHover");
		},
		function(){
			var id = $(this).attr("id").substr($(this).attr("id").length-1, 1);
			$("#dzial" + id + " .nag").removeClass("nagHover");
		}
	);
	$("[id^=dzial] .nag").hover(
		function(){
			$(this).addClass("nagHover");
		},
		function(){
			$(this).removeClass("nagHover");
		}
	);
	$(".kreska_gorne_dz_tr").hover(
		function(){
			$(this).prev().find(".nag").addClass("nagHover");
		},
		function(){
			$(this).prev().find(".nag").removeClass("nagHover");
		}
	);
	function ustawMenu()
	{
		var fixedPosition = $(".oskun_h1").offset();
		var currentPosition = $("#dzial0").offset();
		var diff = fixedPosition.left-currentPosition.left+132; //+169 - przesunięcie menu od lewej
		$("[id^=dzial], [id^=pozmen]").each(function(){
			currentPosition = $(this).position();
			$(this).css("left", currentPosition.left+diff);
			if($(this).is("[id^=pozmen]"))
				$(this).css("top", "139px");
			else
				$(this).css("top", "79px");
		});
		$("[id^=dzial] .mb, a.dzial_gorny_wyrozniony").each(function(){
			if($(this).height()==18)
				$(this).parent().css("padding-top", "20px");
			else
				$(this).parent().css({"padding-top":"11px", "height":"49px"});
		});
	}
	ustawMenu();
	$(window).bind('resize', ustawMenu);
});
