text links can have mouseovers. it's called stylesheets. or there's an easy way if you want for it to apply to any link on the page... just add this to the <head>
<style>
a:link {text-decoration: none; color: #FFFFCC}
a:visited {text-decoration: none; color: #FFFFCC}
a:hover {text-decoration: underline; color: #FFFFCC}
</style>
available text decorations are underline, overline, bold, italic, etc.