// JavaScript Document

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("othersites");
		navRoot.onmouseover=function() {
			this.className+=" over";
  		}
  		navRoot.onmouseout=function() {
  			this.className=this.className.replace(" over", "");
  		}
 	}
}
window.onload=startList;