	function zetfunctions(oLi){
						var j
						var k
						var node
							oLi.onmouseover=function() {
								this.className+=" over";
							}
							oLi.onmouseout=function() {
								this.className=this.className.replace(" over", "");
							}
							for (j=0; j<oLi.childNodes.length; j++) {
							node = oLi.childNodes[j];
							if (node.nodeName=="UL") {
								for (k=0; k<node.childNodes.length; k++) {
								node2 = node.childNodes[k];
								if (node2.nodeName=="LI") {
									zetfunctions(node2);
								}
								}
							}
							}
						
						
						}
						
						startList = function() {
						var i;
							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") {
										zetfunctions(node);
									}
									}
						}
						}