function AssignMenuEvents(pObject) {
  var node ;
  var vPreviousIndex ;
  for (i=0; i < pObject.childNodes.length; i++) {
    node = pObject.childNodes[i];
    if (node.tagName == "LI") {
      if (document.all && document.getElementById) {
        node.onmouseover=function() { this.className+=" over"; }
        node.onmouseout=function() { this.className=this.className.replace(" over", ""); }
      }
    }
    if (node.childNodes.length > 0) {
      vPreviousIndex = i ;
      AssignMenuEvents(node);
      i = vPreviousIndex ;
    }
  }
}
function AssignMenuEventsStart() {
  if (document.all && document.getElementById) {
    // Skip Mozilla. DO IE
    var node = document.getElementById("flag-top");
    if (node) {
      AssignMenuEvents(node);
    }
  }
}
addEvent(window,'load',AssignMenuEventsStart);


