function foco (Id)
{
	var marcador = document.getElementById("icone"+Id);
	var elemento = document.getElementById("item"+Id);
	if (marcador.alt == "x")
		ativo = Id;
	marcador.src = "imagens/marcador/on.jpg";
	elemento.style.color = "#000";
	elemento.style.fontWeight = "bold";
//	elemento.style.backgroundColor = "#FEFDDE";
//	elemento.style.backgroundColor = "#D7E7FF";
}


function perdeFoco (Id)
{
	var elemento = document.getElementById("item"+Id);
	var marcador = document.getElementById("icone"+Id);
	if (ativo != Id)
	{
		marcador.src = "imagens/marcador/off.jpg";
		elemento.style.color = "#888";
		elemento.style.fontWeight = "normal";
	}
//	elemento.style.backgroundColor = "#fff";
}

