// JavaScript Document

startList = function() {
if (document.all&&document.getElementById) {
var x = document.getElementById('cols');
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('cols2');
 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('cols3');
 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", "");
    	   }
  }
 }
}


window.onload=startList;
