// begin index.js

var newsStart = function() {
  //alert("newsStart");
  if (document.all && document.getElementsByTagName) {
    ullist = document.getElementsByTagName("ul");
    for (i=0; i<ullist.length; i++) {
      node = ullist[i];
      if ((node.className=="newstitle") || (node.className=="chantitle")) {
	node.onmouseover=function() {
	  this.className+=" over";
	  //alert("mouseover");
	}
	node.onmouseout=function() {
	  this.className=this.className.replace(" over", "");
	}
      }
    }
  }
}


addLoadEvent(newsStart);
//alert("index.js");

// end index.js


