Here, try this.
CSS
Code:
.image
a:link,
a:visited {
width: width_of_image;
height: height_of_image;
cursor: default;
display: block;
background: url(NORMAL_IMAGE);
}
.image
a:hover {
background: url(ON_HOVER_IMAGE);
}
.image
a:active {
background: url(ON_CLICK_IMAGE);
}
HTML
Code:
<div class="image">
<a href="#">&bnsp;</a>
</div>
If you were going to link it anyways, then just change the above one. It seems overly complicated to me, but it was the way I use for my sites nav so at least it works.
Let me know how it goes,
Tim
Bookmarks