Código:
Gracias <html> <head> <script language="javascript" type="text/javascript"> function Cambio (obj) { switch (obj.style.background) { case "" : obj.style.background = "red"; break; case "red" : obj.style.background = "yellow"; break; case "yellow" : obj.style.background = "red"; break; } } </script> </head> <body> <table border="1"> <tr> <td onmouseover="Cambio(this)" onmouseout="Cambio(this)">Texto</td> </tr> </table> </body> </html>