<div class="center sheet">
<a href="" class="img"><img src="img/sheet.png"></a>
</div>
$(".sheet").on('mouseover', '.img', function(){
$('.img').html('<img src="img/sheet2.png">');
console.log('over');
});
$(".sheet").on('mouseout', '.img', function(){
$('.img').html('<img src="img/sheet.png">');
console.log('out');
})
$(".sheet").on('mouseover', '.img', function(){
$(this).find('img').prop('src', 'img/sheet2.png'); // <- меняем содержимое src
console.log('over');
});
$(".sheet").on('mouseout', '.img', function(){
$(this).find('img').prop('src', 'img/sheet.png'); // <- меняем содержимое src
console.log('out');
});