Multiple hover parameters

is it possible to have multiple a:hover fields on a single page embeded into one css?

this is my roll over style but I would like another and be able to call it at will. any suggestions

CSS FILE CODE
a {
text-decoration: none;
font-weight: bold;
color: #39c;
background-color: blue;
}
a:link {
}
a:visited {
}
a:active {
}
a:hover {
color: #fff;
background-color: #808080;
}
.ahem {
display: none;
}

This set of buttons call the a:hover
can i set a nav2:hover or any other type of parameter?

<div id=“nextbutton”>
<p class=“nextbutton”>blah <a href="">z
link</a> <a href="">a link</a> <a href="">a link</a> <a
href="">a link</a> <a href="">a link</a> <a href="">a link</a> <a
href="">a link</a> <a href="">a link</a> </p>
</div>