How do I make my links change color on mouseover?This only works with the newer
                       browsers (MSIE only). Add this code to your page, in between the </title> and </head> tags
                       and make sure that you substitute the number of your color (if you would like to keep the
                       underline on your links, you need to replace the "none" attribute with "underline"):

                       <style type="text/css">
                       <!--
                       A:link { text-decoration: none; color:"#YourColor" }
                       A:visited { text-decoration: none; color:"#YourColor" }
                       A:hover { text-decoration: none; color:"#YourColor" }
                       -->
                       </style>
 

                       Remember that "link" is the color of your link, "visited" is the color of your link once it has
                       been visited and "hover" is the color of your link on mouseover.