function programsMenuMouseOver(id){
  var item  = document.getElementById(id);
  img   = document.getElementById("img_" + id);
  if (item){
    item.style.background = "#fedd96";
//    item.style.color = "#511200";
//    img.src = "/images/" + id + "_cl.jpg"
  }
}

function programsMenuMouseOut(id){
  var item = document.getElementById(id);
  if (item){
    item.style.background = "#ffcc5f";
//    item.style.color = "#c36704";
//    img.src = "/images/" + id + ".jpg"
  }
}

