The first can be achieved like this:
HTML Code:
<!-- In the head: -->
<style type="text/css">
.red2grey {
color: grey;
}
.red2grey:hover {
color: red;
}
</style>
HTML Code:
<!-- In the body: -->
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. <span class="red2grey">Pellentesque urna.</span> Nulla facilisi...
For the background image, try:
HTML Code:
<style type="text/css">
a:hover {
background-image: url('bearslash.png');
}
</style>
Note that I'm not sure if this will work.
Are we talking about an inline link or a navmenu where the link is in its own block-level element?
Bookmarks