var klik_oferta=true;
var klik_akcesoria=true;
var klik_rozwiazania=true;

function oferta() {
	if (klik_oferta) {
		document.getElementById("akcesoria").style.visibility="hidden";
		document.getElementById("menu_akcesoria").style.color="#ffffff";
		klik_akcesoria=true;
		document.getElementById("rozwiazania").style.visibility="hidden";
		document.getElementById("menu_rozwiazania").style.color="#ffffff";
		klik_rozwiazania=true;

		document.getElementById("oferta").style.visibility="visible";
		document.getElementById("menu_oferta").style.color="#ff0000";
		klik_oferta=false;
		}
	else {
		document.getElementById("oferta").style.visibility="hidden";
		document.getElementById("menu_oferta").style.color="#ffffff";
		klik_oferta=true;
		}
	}

function akcesoria() {
	
	if (klik_akcesoria) {
		document.getElementById("oferta").style.visibility="hidden";
		document.getElementById("menu_oferta").style.color="#ffffff";
		klik_oferta=true;
		document.getElementById("rozwiazania").style.visibility="hidden";
		document.getElementById("menu_rozwiazania").style.color="#ffffff";
		klik_rozwiazania=true;

		document.getElementById("akcesoria").style.visibility="visible";
		document.getElementById("menu_akcesoria").style.color="#ff0000";
		klik_akcesoria=false;
		}
	else {
		document.getElementById("akcesoria").style.visibility="hidden";
		document.getElementById("menu_akcesoria").style.color="#ffffff";
		klik_akcesoria=true;
		}
	}
function rozwiazania() {
	
	if (klik_rozwiazania) {
		document.getElementById("oferta").style.visibility="hidden";
		document.getElementById("menu_oferta").style.color="#ffffff";
		klik_oferta=true;
		document.getElementById("akcesoria").style.visibility="hidden";
		document.getElementById("menu_akcesoria").style.color="#ffffff";
		klik_akcesoria=true;

		document.getElementById("rozwiazania").style.visibility="visible";
		document.getElementById("menu_rozwiazania").style.color="#ff0000";
		klik_rozwiazania=false;
		}
	else {
		document.getElementById("rozwiazania").style.visibility="hidden";
		document.getElementById("menu_rozwiazania").style.color="#ffffff";
		klik_rozwiazania=true;
		}
	}

function red(divek) {
	divek.style.color="#ff0000";
	}

function white(divek) {
	if (!(klik_oferta)) {
		document.getElementById("menu_oferta").style.color="#ff0000";
		document.getElementById("menu_akcesoria").style.color="#ffffff";
		document.getElementById("menu_rozwiazania").style.color="#ffffff";
		}
	if (!(klik_akcesoria)) {
		document.getElementById("menu_oferta").style.color="#ffffff";
		document.getElementById("menu_akcesoria").style.color="#ff0000";
		document.getElementById("menu_rozwiazania").style.color="#ffffff";
		}
	if (!(klik_rozwiazania)){
		document.getElementById("menu_oferta").style.color="#ffffff";
		document.getElementById("menu_akcesoria").style.color="#ffffff";
		document.getElementById("menu_rozwiazania").style.color="#ff0000";
		}
	if ((klik_oferta) && (klik_akcesoria) && (klik_rozwiazania)) {
		document.getElementById("menu_oferta").style.color="#ffffff";
		document.getElementById("menu_akcesoria").style.color="#ffffff";
		document.getElementById("menu_rozwiazania").style.color="#ffffff";
		}
	}

