function doThis(el) {
  if (el.href==window.location) {
   el.style.textDecoration = "none"
   el.parentElement.style.backgroundColor = "#339966"
   el.parentElement.style.backgroundImage = "none"
   el.parentElement.style.borderRight ="#999933 1px solid";
   el.parentElement.style.borderTop ="#999933 1px solid";
   el.parentElement.style.borderBottom ="#339966 1px solid";
   el.style.backgroundColor = "#339966"
   el.style.color = "#ffffff"
   return "bold"
  }else{
 // el.style.backgroundColor = "#F4F4EF"
 // el.style.color = "#4c4c99"
  return "normal"
  }
} 

/*
    BORDER-RIGHT: #999933 1px solid;
    BORDER-TOP: #999933 1px solid;
    FONT-SIZE: 0.7em;
    BORDER-BOTTOM: #339966 4px solid;
    BACKGROUND-COLOR: #339966
*/

