<html>
<head>
<script language="javascript" type="text/javascript">
var hovercolor = "blue"
var origcolor = "white"
</script>
</head>
<body>
<table>
<tr>
<td onmouseover="this.style.backgroundColor = hovercolor" onmouseout="this.style.backgroundColor = origcolor">Text</td>
</tr>
</table>
</body>
</html>