<!DOCTYPE html>
<html>
<script>
function mouseover()
{
document.getElementById("img1").src="Image/Lighthouse.jpg";
}
function mouseout()
{
document.getElementById("img1").src="Image/Koala.jpg";
}
</script>
</head>
<body>
<body>
<img src="Image/Koala.jpg"id="img1"height="100"width="100"
onMouseOver="mouseover()" onMouseOut="mouseout()"/>
</body>
</html>
Go to Image To Mouseover and Mouseout.