Comment faire planer l'image en CSS?

Je veux changer l'image de la normale à plus lumineux quand il est sur le hover, Mon code:

    <div class="nkhome">
        <a href="Home.html"><img src="Images/btnhome.png" /></a>
    </div>
.nkhome{
    margin-left:260px;
    top:170px;
    position:absolute;
    width:59px;
    height:59px;
}
.nkhome a img:hover {
    background:url(Images/btnhomeh.png);
    position:absolute;
    top:0px;
}

Pourquoi ne pas travailler le hover? Quand ma souris est sur, elle montre la première image, pas l'image hover.

source d'informationauteur greenthunder