Данный скрипт подсвечивает разделы при наведении курсором на них.

<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>

Выделенное красным можно поменять на нужный вам цвет подсвечивания.