All the general page links that you want to be the same you can use what has been suggested above ie:
a:link {
background: #000;
color: #fff;
}
a:hover {
background: #fff;
color: #000;
}
If you want a specific area to be different say your Navigation (which is what i asume your looking for) then you would have your navigation in a DIV with the ID of say "nav"
Your CSS wolud then look like this:
#nav a:link {
background: #000;
color: #fff;
}
#nav a:hover {
background: #fff;
color: #000;
}
And the rules would only be applied to the link and hover within the nav div