var hasFlash=function(){var a=6;if(navigator.appVersion.indexOf("MSIE")!=-1&&navigator.appVersion.indexOf("Windows")>-1){document.write('<script language="VBScript"\> \non error resume next \nhasFlash = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & '+a+'))) \n</script\> \n');if(window.hasFlash!=null)return window.hasFlash}if(navigator.mimeTypes&&navigator.mimeTypes["application/x-shockwave-flash"]&&navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){var b=(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description;return parseInt(b.charAt(b.indexOf(".")-1))>=a}return false}();


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