// Nawigacja - poka¿
function showSubNavi(nr) {
	document.getElementById("sB" + nr).style.display = "";
}

// Nawigacja - ukryj
function hideSubNavi(nr) {
	document.getElementById("sB" + nr).style.display = "none";
}
