Hola, TeQuieroAndrea.
Prueba esto a ver si es lo que buscas:
Código PHP:
<html>
<head>
<style>
.c1 {background-color:red; color:yellow; border:1px solid blue; cursor: pointer}
.c2 {background-color:yellow; color: blue; border:1px solid redr}
</style>
</head>
<body>
<table width="75%" border="0">
<tr>
<td class="c1" onmouseover="this.className='c2'" onmouseout="this.className='c1'">Celda1</td>
</tr>
<tr>
<td class="c1" onmouseover="this.className='c2'" onmouseout="this.className='c1'">Celda2</td>
</tr>
</table>
</body>
</html>
Saludos,