<script type="text/javascript">
function over ( o )
{
o.style.background = "url('redface.gif')";
}
function out ( o )
{
o.style.background = "url('frown.gif')";
}
</script>
...
<TD STYLE="background: url('frown.gif')" onMouseOver="over(this)" onMouseOut="out(this)">test...</TD>