diff options
Diffstat (limited to 'www/analyzer/menu.js')
-rw-r--r-- | www/analyzer/menu.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/www/analyzer/menu.js b/www/analyzer/menu.js deleted file mode 100644 index 6b393c0..0000000 --- a/www/analyzer/menu.js +++ /dev/null @@ -1,17 +0,0 @@ -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; |