hi
you can set the CSS pseudo-classes to something like
a:link, a:visited {
color:#005 }
but note that that will apply the style to ALL links on the page, not just to your menu links.
to be more specific, you can do that with your menu CSS classes, like
.className a:link, .className a:visited {
color:#005 }
see Pseudo-Classes and Other Attributes
Reynald V. Nu?ezaspxtreme