<style type="text/css">
.active a {
color: #0f0;
}
</style>
<table>
<tr>
<td class="active">
<a href="" onclick="return goPage('http://yandex.ru')">hehe</a>
</td>
</tr>
</table>
<script type="text/javascript">
function goPage(sPage) {
window.location.href = sPage;
return false;
}
</script>