<!--

var menu_item = new Array("portfolio", "onas", "rozwiazania", "oferta", "kontakt");
var menu = new Object();
menu["portfolio"] = "Nasza praca";
menu["onas"] = "Kim jesteśmy";
menu["rozwiazania"] = "Jak pracujemy";
menu["oferta"] = "Co oferujemy";
menu["kontakt"] = "Jak nas znaleźć";
menu["mapa"] = "Mapa serwisu";

function opensite(url)
{
	for (var n = 0; n < menu_item.length; ++n)
	{
		if(menu_item[n] == url)
		{
			document.getElementById("menu_"+menu_item[n]).style.backgroundColor = "#333333";
			document.getElementById("menu_"+menu_item[n]).style.color = "#FFFFFF";
		}
		else
		{
			document.getElementById("menu_"+menu_item[n]).style.backgroundColor = "#000000";
			document.getElementById("menu_"+menu_item[n]).style.color = "";
		}
	}
	document.getElementById("menu_title").innerHTML = menu[url];
	if(parent.content.location.href != url+".html")
	{
		if(url == "kontakt") parent.content.location.href = url+".php";
		else parent.content.location.href = url+".html";
	}
}

-->