I need to change background image on mouseover on the logo image. I was able to do it, but the transition between images in not smooth.
Could you please help me in getting a smooth transition between the images ?
Here is the code:
<HEAD>
    <link rel="stylesheet" href="zenota.css">
    <SCRIPT language="javascript">
    function MouseOver(){
        document.body.style.backgroundImage="url('picture2.jpg')";
    }
    function MouseOut(){
        document.body.style.backgroundImage="url('picture1.png')";
    }
    </SCRIPT> 
</HEAD>
<BODY>
    <a href="#" onMouseOver="MouseOver()" onMouseOut="MouseOut()">
    <img name="picture" src="zenota3.png" alt="My Image" width="300" height="150"/>
    </a>
</BODY>
 
     
    