Javascript Tricks
onMouseover Text Changes:
This simple script is used to change the color, size, font or to add/remove underline, bold or italic properties of your hyperlinked text. You can use this in many ways.
><SCRIPT> <style type="text/css"> <!--a:link { text-decoration: none;}a:active { text-decoration: none;} a:visited { text-decoration: none;}a:hover { text-decoration: none; color: white; font: bold}--></style> </SCRIPT>