The problem is that for the gray rows, you've applied a background color to each cell. Because of this, the background color of the row cannot show through. Change this type of markup (used for each gray row):
HTML Code:
<tr onMouseover="changeto(event, '#FFFFCC')" onMouseout="changeback(event, '#F1F2ED')">
<td bgcolor="#F1F2ED"> 2</td>
<td bgcolor="#F1F2ED">Alaskan Thunder-Phuk</td>
<td bgcolor="#F1F2ED">0-0-0</td>
<td bgcolor="#F1F2ED">0.000</td>
<td bgcolor="#F1F2ED"> </td>
<td bgcolor="#F1F2ED"> </td>
</tr>
to this type:
HTML Code:
<tr bgcolor="#F1F2ED" onMouseover="changeto(event, '#FFFFCC')" onMouseout="changeback(event, '#F1F2ED')">
<td> 2</td>
<td>Alaskan Thunder-Phuk</td>
<td>0-0-0</td>
<td>0.000</td>
<td> </td>
<td> </td>
</tr>
and all should work as you want it to.
Bookmarks