function topHigh( d )
{
	d.style.background = '#f1f1f2';
	d.firstChild.firstChild.firstChild.style.color = '#6a6a6a';
}

function topLow( d )
{
	d.style.background = '#990000';
	d.firstChild.firstChild.firstChild.style.color = '#ffffff';
}

function menuHigh( d, b ) {
	d.style.backgroundColor = '#94141c';
	d.firstChild.firstChild.firstChild.style.color = '#ffffff';		
}

function menuLow(d, b) 
{
   
	d.style.backgroundColor = (!b) ? '#f1f1f2' : '#dd8700';
	d.firstChild.firstChild.firstChild.style.color = (!b) ? '#6a6a6a' : '#ffffff';
}


function GetLeftStyles(attr, b)
{
  var ret;
  if (attr=="color"){  
  ret =	(!b) ? '#6a6a6a' : '#ffffff';
 } else if (attr == "background-color") {  
  ret =(!b) ? '#f1f1f2' : '#dd8700';
  }else{
	ret="leer"
  }
  
  return ret;
}