function pokazWarstwe(idWarstwy)	{
  if (document.getElementById)	{	
   	var targetElement = document.getElementById(idWarstwy);
  	targetElement.style.display = 'block';
	}
}

function ukryjWarstwe(idWarstwy)	{
  if (document.getElementById)	{	
   	var targetElement = document.getElementById(idWarstwy);
  	targetElement.style.display = 'none';
	}
}

function idzDo(url)	{
	top.document.location.href=url;
}

function rozwin(co){
  with(document.getElementById(co)){className=className=='none'?'block':'none';}
}


function pokaz_ukryj(co) {
     var obiekt = document.getElementById(co);
     if (obiekt.className == 'none') {
          obiekt.className = 'block';
     } 
     else if (obiekt.className == 'block') {
          obiekt.className = 'none';
     }
     else {
      obiekt.className = 'block';
     }
}


$(document).ready(function(){ 

$("h3 a").click(function(){
  $(this).parent().next().toggle("normal");
});

$("#show-all").toggle(function(){
      $(this).val('Zwiń wszystko');
      $(".nav ul").show("normal");
    }, function(){
      $(this).val('Rozwiń wszystko');
      $(".nav ul").hide("normal");
    });
});