I'm using this code to apply a background colour to hyperlinks when the mouse moves over them.
Code:
A:hover {
    text-decoration : none;
    color : #0080C0;
    background-color : #DEDFDF;
}
However it also colours the background of image links. How can I get it to only apply to text links?

Thanks