The easiest way would be to create a new CSS rule for the specific a tag. Something like
a.linkclass:hover {color:samecolor}
If you have to use JQuery to override the default styles, you have to manually add the css rules in the hover state, something like this:
$('a.linkclass').hover(function(){
$(this).css({'color':'samecolor'});
});
hope this help