on many sites, such as http://www.clearleft.com, you\'ll notice that when the links are hovered over, they will fade into a different color as opposed to immediately switchi
Try this in your css:
.a { transition: color 0.3s ease-in-out; } .a { color:turquoise; } .a:hover { color: #454545; }