Есть код:
<style>
.t td { background-color: #ffddff; }
</style>
<script>
function over(id) { id.style.background = '#ffeeff'; }
function out(id) { id.style.background = '#ffffff'; }
</script>
<table class=t>
<tr onmouseover="over(this);" onmouseout="out(this);">
<td>1234567890</td>
<td>1234567890</td>
<tr onmouseover="over(this);" onmouseout="out(this);">
<td>1234567890</td>
<td>1234567890</td>
</tr>
</table>
Без стиля ".t td { background-color: #ffddff; }" все работает, но этот стиль обязателен.
Как сделать, чтобы и стиль был, и смена подсветки работала?