Merci pour vos réponses.
Au final, j'ai fait ainsi :
dans le html :
<img src="image.jpg" id="bigImage" onmouseover="changeImage(this,1)" onmouseout ="changeImage(this,2)" >
dans le js :
function changeImage(x,y){
if (y==1){
x.src="singe.jpg" ;
}
else {x.src="image.jpg" ;
}
}