Alright, I know I can do this:
... and I know I can do this:
... but I don't like having to put all that code in every single <td> tag I have in my humongous table, so what I want to know is if there is some way to do something like this:
Any suggestions? 
--Ryan
Code:
<td id="cell4" onMouseOver="cell4.style.backgroundcolor='#00FF00'" onMouseOut="cell4.style.backgroundcolor=''">Hello</td>
Code:
<style>
<!--
.hilite {
border: 1px solid #000000;
background-color: #FFFF00;
color: #0000FF;
}
-->
</style>
<td id="cell2" onMouseOver="cell2.className='hilite'" onMouseOut="cell2.className=''">is</td>
Code:
<style>
<!--
td {
onMouseOver="this.style.backgroundcolor='#00FF00'"
onMouseOut="this.style.backgroundcolor=''"
}
//-->
</style>

--Ryan