лучше используйте .hover и меняйте src у картинки
<script class="jsbin" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script>
$(function() {
var el = $('a.test'),
img = $('img', el);
el.hover(
function () {
img.attr('src', 'http://placehold.it/100/ff0000');
},
function () {
img.attr('src', 'http://placehold.it/100/00ff00');
}
);
});
</script>
<a class="test"><img src="http://placehold.it/100/00ff00"></a>