se hai impostato il bgcolor alla td non vedi il cambiamento fatto nella tr
guarda questo esempio
codice:
<table>
<tr onmouseover="this.bgColor='yellow'" onmouseout="this.bgColor='#FFFFFF'">
	<td>----------------</td>
	<td>----------------</td>
</tr>
<tr onmouseover="this.bgColor='yellow'" onmouseout="this.bgColor='#FFFFFF'">
	<td bgcolor="red">----------------</td>
	<td>----------------</td>
</tr>
</table>