i can't understand why just the first function ($("#ContentWel")) works.
But if I put the second function ("#ContentCan") in the first place it only works:
$(document).ready(function(){
$("#ContentWel").hover(function(){
$('#counterimage').attr('src', 'img/01.png');
});
$("#ContentCan").hover(function(){
$('#counterimage').attr('src', 'img/02.png');
});
$("#ContentCli").hover(function(){
$('#counterimage').attr('src', 'img/03.png');
});
$("#ContentTesti").hover(function(){
$('#counterimage').attr('src', 'img/04.png');
});
$("#ContentCont").hover(function(){
$('#counterimage').attr('src', 'img/05.png');
});
$("#ContentPri").hover(function(){
$('#counterimage').attr('src', 'img/06.png');
});
});
Thanks, Guilherme