No problem. You do have to change it in the stylesheet. Leave your current a:hover setting in place and add the following (change the color/text decoration to whatever fits your site.

Code:
#navBreadCrumb a:link {
	color: #FF0000;
	text-decoration: none;
	}


#navBreadCrumb a:visited {
	color: #0000FF;
	text-decoration: none;
	}

#navBreadCrumb a:hover {
	color: #FF0000;
	text-decoration: none;
	}
I put it in my stylesheet after the #navBreadCrumb declaration, but it can go anywhere.