bah le plus simpe est de mettre ton image en arriere plan dans le css...
Sauf que ca marche pas sur IE ...
==>dans ton fichier css si tu donne un id a ta balise sur le fichier html ca donne
#idDeMonTd{
background:url(../images/fond.jpg) no-repeat;
// ou alors background:#ffffff;
}
#idDeMonTd:hover{
background:url(../images/fondHover.jpg) no-repeat;
}
valable sous tous les navigateurs sauf IE ...d'ailleurs je cherche encore un equivalent css et je trouve pas.
sinon sur ton fichier html sur la balise , par ex :
<div background="./etc..." onmouseover="this.style.background=url('./etc...');"
onmouseout="this.style.background='url('./etc...');"
>bla bla bla </div>