function topHigh( d )
{
	d.style.background = '#F1F1F2';
	d.firstChild.firstChild.firstChild.style.color = '#A40000';
}

function topLow( d )
{
	d.style.background = '#A40000';
	d.firstChild.firstChild.firstChild.style.color = '#F1F1F2';
}

function menuHigh( d )
{
	d.style.backgroundColor = '#A40000';
	d.firstChild.firstChild.firstChild.style.color = '#ffffff';
}

function menuLow( d , b )
{
	d.firstChild.firstChild.firstChild.style.color = ( !b ) ? '#A40000' : '#ffffff';
	d.style.backgroundColor = ( !b ) ? '#F1F1F2' : '#990000';
}