Hover effects can either be achieved with the onmouseover and onmouseout properties of the <a> tag (both of which take javascript as actions). But, much better, is to use CSS, and do something like:
a {/* style goes here*/}
a:hover {}
a:visited {}
a:active {}