// JavaScript Document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;// Fix IE Select Text Bugif (window.createPopup && document.compatMode && document.compatMode=="CSS1Compat"){  document.onreadystatechange = onresize = function fixIE6AbsPos()  {    if (!document.body) return;    if (document.body.style.margin != "0px") document.body.style.margin = 0;    onresize = null;    document.body.style.height = 0;    setTimeout(function(){ document.body.style.height = document.documentElement.scrollHeight+'px'; }, 1);    setTimeout(function(){ onresize = fixIE6AbsPos; }, 100);  }}
