$(function() {
//menu
	$("ul#aktualnosci_home li:last-child").addClass("last");
//flash
	$("#uslugi").flash({
		src: "swf/uslugi.swf",
		id: "flash_uslugi",
		wmode: "transparent",
		width: 556,
		height: 105 },
        { version: 8 }
    );
//menu
	$("ul.subnav li a").hover(function() {
		$(this).stop().animate({ 
			paddingLeft: '18'
		}, 150);
	} , function() {
		$(this).stop().animate({
			paddingLeft: '8'
		}, 150);
	});
//loga
	$(".loga").jCarouselLite({
		btnNext: ".link_next",
		btnPrev: ".link_prev"
	}); 
//mapy
	$("#map").css({'z-index' : '10'});
	$("#mapw").css({'z-index' : '0'});
	
	$("a.link_poz").click(function () { 
		$("#map").css({'z-index' : '10'});
		$("#mapw").css({'z-index' : '0'});
	});
	$("a.link_waw").click(function () { 
		$("#map").css({'z-index' : '0'});
		$("#mapw").css({'z-index' : '10'});
	});

});
