Видимо, что-то вроде этого может помочь:
Код:
<style>
a.button {
background: url('button.gif') no-repeat center;
text-decoration: none;
}
a:hover.button {
background: url('button_over.gif') no-repeat center;
text-decoration: underline;
}
</style>
<a href="#" class="button">Ссылка Раз</a>
<a href="#" class="button">Ссылка Два</a>