 function showIt(src) {
  var child, parent, childNum = 0;
  if ("B" == src.tagName) {
    parent = src.parentNode;
    for (var i=0; i < parent.childNodes.length; i++) {
      if (parent.childNodes[i].nodeType != 1) { continue; }
      if (childNum != 1) { childNum++; continue; }
      else { child = parent.childNodes[i]; }
    }
    if (child != null && "LI" == parent.tagName && "UL" == child.tagName) {
      parent.className = ("close" == parent.className ? "open" : "close");
      child.className = ('expanded' == child.className ? 'none' : 'expanded');
    }
  }
}
function over(src) {
  if ("B" == src.tagName) {
    src.style.color = "auto";
    src.style.cursor = (document.all) ? "hand" : "pointer";
  }
}

function out(src) {
  if ("B" == src.tagName) {
    src.style.color = "auto";
    src.style.cursor = "auto";
  }
}
