Try this (inside the table)
<table>
<tr>
<td style="cursor:hand">Text inside cell
</td>
</tr>
</table>
(between <head>)
<style>
.cell { cursor:hand; }
</style>
-----(in body)-----
<table>
<tr>
<td class="cell"Text inside cell
</td>
</tr>
</table>
I tried it, and it works fine for me. Hope it's what you need
-Aaron