function Up(from)
{
	from.children(0).className = "MenuUp";
	from.children(0).children(0).style.color = "black";
}
function Off(from)
{
	from.children(0).className = "MenuOff";
	from.children(0).children(0).style.color = "black";
}
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 Down(from)
{
	from.children(0).children(0).style.color = "white";
}
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";
}


