 overColor="#A5A5A5";

 function overLnkAction(element) {
  if(!element.oldBackgroundColor) {
   element.oldBackgroundColor = element.style.backgroundColor;
   element.style.cursor = "pointer";
  }
  element.oldStatus = window.defaultStatus;
  window.defaultStatus = element.childNodes[1];
  element.style.backgroundColor = overColor;
 }

 function outLnkAction2(element) {
  window.defaultStatus = element.oldStatus;
 }

 function outLnkAction(element) {
  element.style.backgroundColor = element.oldBackgroundColor;
  window.defaultStatus = element.oldStatus;
 }
