function topHigh( d )
{
	d.style.background = '#003A0A';
	d.firstChild.firstChild.firstChild.style.color = '#003A0A';
}

function topLow( d )
{
	d.style.background = '#003A0A';
	d.firstChild.firstChild.firstChild.style.color = '#003A0A';
}

function menuHigh( d )
{
	d.style.backgroundColor = '#F8EFC2';
	d.firstChild.firstChild.firstChild.style.color = '#000000';
}

function menuLow( d , b )
{
	d.firstChild.firstChild.firstChild.style.color = ( !b ) ? '#F8EFC2' : '#F8EFC2';
	d.style.backgroundColor = ( !b ) ? '#003A0A' : '#003A0A';
}