function inRoot(id)
{
	document.getElementById(id).style.color = '#FFFFCC';
	document.getElementById(id).style.backgroundColor = '#990000';
}
function outRoot(id)
{
	document.getElementById(id).style.color = '#000000';
	document.getElementById(id).style.backgroundColor = '#FFCC33';
}
function showSub(id)
{
	document.getElementById(id).style.display = 'block';
}
function hideSub(id)
{
	document.getElementById(id).style.display = 'none';
}
function inSub(id)
{
	document.getElementById(id).style.color = '#FFFFCC';
	document.getElementById(id).style.backgroundColor = '#990000';
}
function outSub(id)
{
	document.getElementById(id).style.color = '#000000';
	document.getElementById(id).style.backgroundColor = '#FFCC33';
}
