// JavaScript Document

startList = function() {
if (document.all&&document.getElementById) {
var x = document.getElementById('tabs');
if (!x) return;
var y = x.getElementsByTagName('div');
for (var i=0;i<y.length;i++) {
	 y[i].onmouseover=function() {
	this.className+=" over";
	  }
	  y[i].onmouseout=function() {
	    this.className=this.className.replace(" over", "");
   	   }
 }
 }
 if (document.all&&document.getElementById) {
 var x = document.getElementById('tabs2');
 if (!x) return;
 var y = x.getElementsByTagName('div');
 for (var i=0;i<y.length;i++) {
 	 y[i].onmouseover=function() {
 	this.className+=" over";
 	  }
 	  y[i].onmouseout=function() {
 	    this.className=this.className.replace(" over", "");
    	   }
  }
 }
 if (document.all&&document.getElementById) {
 var x = document.getElementById('tabs3');
 if (!x) return;
 var y = x.getElementsByTagName('div');
 for (var i=0;i<y.length;i++) {
 	 y[i].onmouseover=function() {
 	this.className+=" over";
 	  }
 	  y[i].onmouseout=function() {
 	    this.className=this.className.replace(" over", "");
    	   }
  }
 }
 if (document.all&&document.getElementById) {
 var z = document.getElementById('menu');
 if (!z) return;
 var p = z.getElementsByTagName('div');
 for (var i=0;i<p.length;i++) {
 	 if(this.className == 'schedulelink') {
 	 
 	 } else {
 	 p[i].onmouseover=function() {
 	this.className+=" cover";
 	  }
 	  p[i].onmouseout=function() {
 	    this.className=this.className.replace(" cover", "");
    	   }}
  }
 }
 if (document.all&&document.getElementById) {
  var z = document.getElementById('stabs');
  if (!z) return;
  var p = z.getElementsByTagName('div');
  for (var i=0;i<p.length;i++) {
  	 p[i].onmouseover=function() {
  	this.className+=" rover";
  	  }
  	  p[i].onmouseout=function() {
  	    this.className=this.className.replace(" rover", "");
     	   }
   }
 }
 if (document.all&&document.getElementById) {
   var z = document.getElementById('stabs2');
   if (!z) return;
   var p = z.getElementsByTagName('div');
   for (var i=0;i<p.length;i++) {
   	 p[i].onmouseover=function() {
   	this.className+=" rover";
   	  }
   	  p[i].onmouseout=function() {
   	    this.className=this.className.replace(" rover", "");
      	   }
    }
 }
 if (document.all&&document.getElementById) {
   var z = document.getElementById('stabs3');
   if (!z) return;
   var p = z.getElementsByTagName('div');
   for (var i=0;i<p.length;i++) {
   	 p[i].onmouseover=function() {
   	this.className+=" rover";
   	  }
   	  p[i].onmouseout=function() {
   	    this.className=this.className.replace(" rover", "");
      	   }
    }
 }
}


window.onload=startList;

