function MenuOn(mitem) {
  mitem.style.backgroundColor='ED8585';
//  mitem.style.borderColor='3C0B0B';
 }
function MenuOff(mitem) {
  mitem.style.backgroundColor='';
//  mitem.style.borderColor='';
 }

function GroupOn(grp) {
  grp.style.backgroundColor='ED8585';
  grp.style.borderColor='961D1D';
 }
function GroupOff(grp) {
  grp.style.backgroundColor='F9D5D5';
  grp.style.borderColor='F7C5C5';
 }

function ItemOn(itm) {
  itm.style.backgroundColor='F7D0D0';
  itm.style.borderColor='961D1D';
 }
function ItemOff(itm) {
  itm.style.backgroundColor='F9D5D5';
  itm.style.borderColor='F7C5C5';
 }


