<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body>
<img src="jd1.png" width="100" height="100" id="rarara">
<script type="text/javascript">
var imgObj=document.getElementById("rarara");
imgObj.onmouseover=function(){
imgObj.src="jd2.png";
}
imgObj.onmouseout=function(){
imgObj.src="jd1.png";
}
</script>
</body>
</html>