$(document).ready(function() {

	// NOWE OKNO JEŚLI ATRYBUT REL='TARGET'
	$("a[rel='target']").click(function() {
		var newWindow = window.open(this.href);
		return false;
	});
	
	// ROZWIJANIE ZAWARTOŚCI NA PODSTRONIE OBSZARY PRAKTYK
	$("ul.obszary_praktyk ul").hide();
	
	$("ul.obszary_praktyk li").toggle(function(){
	$(this).next('ul.obszary_praktyk ul').slideDown();
	},function(){
	$(this).next('ul.obszary_praktyk ul').slideUp();
	});
	
	$('ul.obszary_praktyk li').last().css('cursor', 'default');
		
	// ROZWIJANIE ZAWARTOŚCI W KONTAKCIE_DE
	$(".anfahrt_szczegoly").hide();
	$(".anfahrt_szczegoly2").hide();
	
	$(".anfahrt").toggle(function(){
	$(this).next('.anfahrt_szczegoly').slideDown();
	},function(){
	$(this).next('.anfahrt_szczegoly').slideUp();
	});
	
	$(".anfahrt2").toggle(function(){
	$(this).next('.anfahrt_szczegoly2').slideDown();
	},function(){
	$(this).next('.anfahrt_szczegoly2').slideUp();
	});
	
	$('.anfahrt').last().css('cursor', 'pointer');
	$('.anfahrt2').last().css('cursor', 'pointer');
	
	// ROZWIJANIE ZAWARTOŚCI W KONTAKCIE
	$(".dojazd_szczegoly").hide();
	$(".dojazd_szczegoly2").hide();
		
	$(".dojazd").toggle(function(){
	$(this).next('.dojazd_szczegoly').slideDown();
	},function(){
	$(this).next('.dojazd_szczegoly').slideUp();
	});
	
	$(".dojazd2").toggle(function(){
	$(this).next('.dojazd_szczegoly2').slideDown();
	},function(){
	$(this).next('.dojazd_szczegoly2').slideUp();
	});
	
	$('.dojazd').last().css('cursor', 'pointer');
	$('.dojazd2').last().css('cursor', 'pointer');


	// ROZWIJANIE ZAWARTOŚCI NA PODSTRONIE LINKI
	$("ul.linki ul").hide();
	
	$("ul.linki li").toggle(function(){
	$(this).next('ul.linki ul').slideDown();
	},function(){
	$(this).next('ul.linki ul').slideUp();
	});
	
	$('ul.linki li').last().css('cursor', 'default');
	
	// KOLOROWANIE W AKTUALNOŚCIACH 
	$("ul.aktualnosci li:even, ul.aktualnosci_wystapienia li:even").css("background-color", "#dfdfdf");
	
	// ROZWIJANIE ZAWARTOŚCI NA PODSTRONIE AKTUALNOŚCI
	
	$(".the_kings_speech2").hide();
	
	$(".the_kings_speech").toggle(function(){
	$(this).next('.the_kings_speech2').slideDown();
	},function(){
	$(this).next('.the_kings_speech2').slideUp();
	});
	
		
	// WYWOŁANIE FLASHA

	 $('#header').flash({
	  src: 'img/header.swf',
	  width: 980,
	  height: 408,
	  wmode: 'transparent'
	  });
	
	 $('#header_de').flash({
	  src: 'img/header_de.swf',
	  width: 980,
	  height: 408,
	  wmode: 'transparent'
	  });
	  
	 $('#header_en').flash({
	  src: 'img/header_en.swf',
	  width: 980,
	  height: 408,
	  wmode: 'transparent'
	  });
	  
});

//ŚRODKOWACZ W POZIOMIE

$.fn.ulAlign = function() {
    return this.each(function(i){
        var szerokosc_div = $(this).width();
        var szerokosc_ul = $(this).children().width();
        var margines = (szerokosc_div - szerokosc_ul) / 2;
        $(this).children().css('margin-left', margines);
    });
};

$(document).ready(function() {
    $("#nav, #nav_podstrona, #footer_menu").ulAlign();
});

