var startList = function() {
if (document.all && document.getElementById) {
	var navRoot = document.getElementById("issuesNav");

	for (var i=0; i<navRoot.childNodes.length; i++) {
		var node = navRoot.childNodes[i];
		if (node.nodeName=="LI") {
			node.onmouseover=function() {
				this.className+=" over";   }
  			node.onmouseout=function() {
  				this.className=this.className.replace(" over", "");   }
   		}
  	}
	var navRoot2 = document.getElementById("resourceNav");
	for (var j=0; j<navRoot2.childNodes.length; j++) {
		var node2 = navRoot2.childNodes[j];
		if (node2.nodeName=="LI") {
			node2.onmouseover=function() {
				this.className+=" over";   }
  			node2.onmouseout=function() {
  				this.className=this.className.replace(" over", "");   }
   		}
  	}
 }
}
window.onload=startList;



