//CHECK FOR IE6
function is_ie6(){
     return ((window.XMLHttpRequest == undefined) && (ActiveXObject != undefined));
}
//menu fix
startList = function() { 
if (!is_ie6()) return false;
var allelements = document.getElementsByTagName("ul");
  for(var counter = 0;counter<allelements.length;counter++)
  {
    if (allelements[counter].className=="menu" || allelements[counter].className=="level1" || allelements[counter].className=="subMenu")
       fix(allelements[counter]);
  }
 
} // end startlist

function fix(navRoot) {
if (document.all&&document.getElementById) {
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI" && node.className!="spacer" && node.className!="short") {
	node.onmouseover=function() { this.className="over";  }
    node.onmouseout=function() { this.className=this.className.replace("over", "");  }
   } // end id LI
  } //end for
 } //end if
} // end function
window.onload=startList;
