// JavaScript Document

// Show only to Win IE...

if (document.all && window.print) {
	
  // IE menu code from A List Apart
  // http://www.alistapart.com/articles/horizdropdowns

  startList = function() {
    if (document.all&&document.getElementById) {
    navRoot = document.getElementById("main_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;
}
