Código HTML:
<style type="text/css">
a{color:#fff;}
#fila{background:#000;}
#fila:hover{background:red;}
</style>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr id="fila">
<td width="60%"><a href="#">Titulo</a></td>
<td width="20%"><a href="#">Puntos</a></td>
<td width="20%"><a href="#">Visitas</a></td>
</tr>
<tr id="fila">
<td width="60%"><a href="#">Titulo</a></td>
<td width="20%"><a href="#">Puntos</a></td>
<td width="20%"><a href="#">Visitas</a></td>
</tr>
</table>
Solo use la seudo clase hover de css , cuando el puntero se encuentre sobre el elemento con id "fila" cambie el fondo a un color rojo , y cuando no lo deje negro.