
  var newsStart_onload;
  newsStart_onload = window.onload;
  newsStart = function() {
    if (newsStart_onload)
      newsStart_onload();
    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";
	  }
	  node.onmouseout=function() {
	    this.className=this.className.replace(" over", "");
	  }
	}
      }
    }
  }
  window.onload=newsStart;

