<!DOCTYPE html>
<html>
<head>
<title>Image Change</title>
<script>
function change(){
document.getElementById("pic").src = "mikul.jpg";
}
function normal(){
document.getElementById("pic").src = "parvesh.jpg";
}
</script>
</head>
<body>
<img id="pic" src="mikul.jpg" width="250"
onmouseover="change()"
onmouseout="normal()">
</body>
</html>