// JavaScript Document
 function changeColor(){
	var dls = document.getElementsByTagName('dl');
	for(var i=0; i<dls.length; i++){
		var dl = dls[i];
		if(dl.className=='tcbg1'){
			dl.onmouseover=function(){ 
			this.className='tcbg2'
			}
			dl.onmouseout = function(){
			this.className='tcbg1'
			}
		}
	}
 }
 window.onload=changeColor;
 
 /*

function changeColor(){
  var test;
  test=document.getElementById("tc");

  test.onmouseover=function(){
   test.className='tcbg2';
  }
  test.onmouseout=function(){
   test.className='tcbg1';
  }
 }
window.onload=changeColor;*/
