It should be. You could use somthing like this
Code:
<ul class="navbar">
<li class="rolllink"> <a href="whereever.html"> Text you want here </a> </li>
</ul>
and then for the css
Code:
ul.navbar {
list-style:none;
display:block;
}
ul.navbar li.rolllink {
background: url(image.extension) no-repeat;
height:whatever;
width:whatever;
display:block;
}
ul.navbar li.rolllink:hover {
background: url(image-hover.extension) no-repeat;
}
that should be the gist of it. You would need to edit the css to you needs, but that would be one way of doing it, hope it helps