source: themes/cta/scripts/menus.js @ 1

Last change on this file since 1 was 1, checked in by guille, 17 years ago

carga incial

File size: 446 bytes
Line 
1// JavaScript Document
2
3startList = function() {
4if (document.all&&document.getElementById) {
5navRoot = document.getElementById("nav");
6for (i=0; i<navRoot.childNodes.length; i++) {
7node = navRoot.childNodes[i];
8if (node.nodeName=="LI") {
9node.onmouseover=function() {
10this.className+=" over";
11  }
12  node.onmouseout=function() {
13  this.className=this.className.replace(" over", "");
14   }
15   }
16  }
17 }
18}
19window.onload=startList;
Note: See TracBrowser for help on using the repository browser.