var lastTeamTextId;

function showTeamText(id)
{
	if (lastTeamTextId)
	{
		lastTeamTextDiv = document.getElementById(lastTeamTextId);
		lastTeamTextDiv.className = "teamTextOff";
	}
	teamTextDiv = document.getElementById(id);
	teamTextDiv.className = "teamTextOn";
	lastTeamTextId = id;
}