bg = "";
lThis = "";
function link_over(src, clrOver) {
 if (!src.contains(event.fromElement)) {
  bg = src.bgColor;
  src.style.cursor = 'hand';
  src.bgColor = clrOver;
 }
}
function link_hout(src, clrIn) {
 if (!src.contains(event.toElement)) {
  src.style.cursor = 'default';
  src.bgColor = clrIn;
 }
}


