function topHigh( d )
{
	d.style.background = '#F2F7DB';
	d.firstChild.firstChild.firstChild.style.color = '#DEEBA5';
}

function topLow( d )
{
	d.style.background = '#DEEBA5';
	d.firstChild.firstChild.firstChild.style.color = '#F2F7DB';
}

function menuHigh( d )
{
	d.style.backgroundColor = '#DEEBA5';
	d.firstChild.firstChild.firstChild.style.color = '#307658';
}

function menuLow( d , b )
{
	d.firstChild.firstChild.firstChild.style.color = ( !b ) ? '#307658' : '#307658';
	d.style.backgroundColor = ( !b ) ? '#F2F7DB' : '#307658';
}
