// JavaScript Document
<!--
startList = function() {
	if (document.all&&document.getElementById) {
				
			navRoot1 = document.getElementById("nav1");
			navRoot1.onmouseover=function() {this.className+=" over";}
  			navRoot1.onmouseout=function() {this.className=this.className.replace(" over", "");}
			
			navRoot2 = document.getElementById("nav2");
			navRoot2.onmouseover=function() {this.className+=" over";}
  			navRoot2.onmouseout=function() {this.className=this.className.replace(" over", "");}
			
						navRoot3 = document.getElementById("nav3");
			navRoot3.onmouseover=function() {this.className+=" over";}
  			navRoot3.onmouseout=function() {this.className=this.className.replace(" over", "");}
			
						navRoot4 = document.getElementById("nav4");
			navRoot4.onmouseover=function() {this.className+=" over";}
  			navRoot4.onmouseout=function() {this.className=this.className.replace(" over", "");}
			
						navRoot5 = document.getElementById("nav5");
			navRoot5.onmouseover=function() {this.className+=" over";}
  			navRoot5.onmouseout=function() {this.className=this.className.replace(" over", "");}
			
						navRoot6 = document.getElementById("nav6");
			navRoot6.onmouseover=function() {this.className+=" over";}
  			navRoot6.onmouseout=function() {this.className=this.className.replace(" over", "");}
			
						navRoot7 = document.getElementById("nav7");
			navRoot7.onmouseover=function() {this.className+=" over";}
  			navRoot7.onmouseout=function() {this.className=this.className.replace(" over", "");}
			
						navRoot8 = document.getElementById("nav8");
			navRoot8.onmouseover=function() {this.className+=" over";}
  			navRoot8.onmouseout=function() {this.className=this.className.replace(" over", "");}
			
						navRoot9 = document.getElementById("nav9");
			navRoot9.onmouseover=function() {this.className+=" over";}
  			navRoot9.onmouseout=function() {this.className=this.className.replace(" over", "");}
			 		
			navRoot10 = document.getElementById("nav10");
			navRoot10.onmouseover=function() {this.className+=" over";}
  			navRoot10.onmouseout=function() {this.className=this.className.replace(" over", "");}
			
			navRoot11 = document.getElementById("nav11");
			navRoot11.onmouseover=function() {this.className+=" over";}
  			navRoot11.onmouseout=function() {this.className=this.className.replace(" over", "");}
			
			}  		
}
window.onload=startList;  
//-->