Kod
..
<td id="komorka" style="" id="link">
<a href="#" onmouseover="document.getElementById('komorka').style.backgroundImage='url(obrazek.gif)';" onmouseout="document.getElementById('komorka').style.backgroundImage='';" >Kliknij</a>
</td>
..
A najlepiej eventy dać do <td.. więc:
Kod
..
<td id="komorka" style="" id="link" onmouseover="document.getElementById('komorka').style.backgroundImage='url(obrazek.gif)';" onmouseout="document.getElementById('komorka').style.backgroundImage='';">
<a href="#">Kliknij</a>
</td>
..