Viva el frontpage e? jaja [ademas creo que solo funcionaria en IE eso].
 
Bueno a ver, que el js no es lo tuyo, te echo una manita:  
Código:
 <table>
	<tr>
		<td id="celda">Texto</td>
	</tr>
</table>
<script language="javascript">
document.getElementById("celda").onmouseover=function() {
  this.style.backgroundColor="red";
  this.style.color="blue";
}
</script>
  Y no tiene mas. He añadido el getElementById porque teoricamente hay que hacerlo asi.