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


// generate e m a i l addr from any d o m a i n
function address2(adr, domn1, domn2, nname, subjct) 
    {
    if (subjct === undefined) subjct = "";
    if (nname === undefined) nname = "";
    var str="<a href=";
    var att = "&#";
    str+="'mail";
    att +="064;";
    str=str+"to"+":"+adr+att+domn1+"."+domn2;
    if (subjct != "") str+="?subject="+subjct;
    if (nname) str+="'>"+nname+"</a>"; else str+="'>"+adr+att+domn1+"."+domn2+"</a>";
    document.write(str);
    }