Подсвечиваем разделы при наведении мышью. Duka
<script type="text/javascript">
var td = document.getElementsByClassName("tcl")
for(i=0;i<td.length;i++){
td[i].setAttribute("onmouseover", "this.style.backgroundColor='red'")
td[i].setAttribute("onmouseout", "this.style.backgroundColor=''")
}
</script>
red - нужный цвет
Второй способ. Стилем. От Пети (Матрикса)
<style type="text/css">
td.tcl:hover {background: #ccc !important;}
</style>