// JavaScript Document

startList = function() {
	if (document.all&&document.getElementById) {
		var uls = document.getElementsByTagName('ul');
		var nav_uls = [];
		for (var i = 0; i < uls.length; i++) {
			if (/\bnav\b/.exec(uls[i].className)) {
				nav_uls[nav_uls.length] = uls[i];
			}
		}
		for (var i = 0; i < nav_uls.length; i++) {
			var navRoot = nav_uls[i];
			for (i2=0; i2<navRoot.childNodes.length; i2++) {
				node = navRoot.childNodes[i2];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					}
			  		node.onmouseout=function() {
			  			this.className=this.className.replace(" over", "");
					}
				}
			}

		}
	}
}





/*
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", "");
				}
			}
		}
	}
	loadDoc('intro.htm', 't1')
}
*/
