Si, por ejemplo para cambiar el color de la fila se puede hacer:
Código:
<html>
<head>
<style type="text/css">
.filaItem1 { background-color: white; }
.filaItem0 { background-color: yellow; }
.filaOver { background-color: pink; }
</style>
</head>
<body>
<table>
<tr class="filaItem0" onmouseover="this.className='filaOver'" onmouseout="this.className='filaItem0';">
<td>hola</td>
</tr>
<tr class="filaItem1" onmouseover="this.className='filaOver'" onmouseout="this.className='filaItem1';">
<td>que tal</td>
</tr>
</table>
</html>