<!--
//function jumpPage(newLoc) {
//	newPage = newLoc.options[newLoc.selectedIndex].value
	
//	if (newPage != "") {
//		window.location.href = newPage
//	}
//}

startThisList = function() {
if (document.all&&document.getElementById) {
topLinksRoot = document.getElementById("topLinks");
for (i=0; i<topLinksRoot.childNodes.length; i++) {
node = topLinksRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}

window.onload=startThisList; 

//

	