//Menu zielone
function Up(from)
{
	from.children(0).className = "MenuUp";
	from.children(0).children(0).style.color = "yellow";
}
function Off(from)
{
	from.children(0).className = "MenuOff";
	from.children(0).children(0).style.color = "white";
}
function Down(from)
{
	from.children(0).children(0).style.color = "white";
}

//Menu inne
function UpBlue(from)
{
	from.children(0).className = "MenuBlueUp";
	from.children(0).children(0).style.color = "black";
}
function OffBlue(from)
{
	from.children(0).className = "MenuBlueOff";
	from.children(0).children(0).style.color = "black";
}

function UpMenu(from)
{
	from.children(0).className = "MenuUpMenu";
	from.children(0).children(0).style.color = "black";
}
function OffMenu(from)
{
	from.children(0).className = "MenuOffMenu";
	from.children(0).children(0).style.color = "black";
}



