<body>
<img src="images/hot.jpg" alt="" id="imgId"/>
</body>
<script>
i=0;
var imgObj=document.getElementById("imgId");
imgObj.onclick=function(){
if(i%2==0){
this.src="images/hot1.jpg"
}else{
this.src="images/hot.jpg"
}
i++;
}
</script>
<body>
<img src="images/hot.jpg" alt="" id="imgId"/>
</body>
<script>
i=0;
var imgObj=document.getElementById("imgId");
imgObj.onclick=function(){
if(i%2==0){
this.src="images/hot1.jpg"
}else{
this.src="images/hot.jpg"
}
i++;
}
</script>