if u r ready to use js.... here is the method !!
insert this code to ur page header
Code:
<script type="text/javascript">
// CHANGE SOURCE
function Change(mID,cID){
mItem=document.getElementById(mID);
mItem.src="over.jpg";
}
// RESTORE SOURCE
function Restore(mID,cID){
mItem=document.getElementById(mID);
mItem.src="normal.jpg";
}
</script>
code for the image....
Code:
<a href="http://mail.google.com/hosted/cgz09.com/">
<img src="normal.jpg" name="img_1" id="img_1" onMouseOver="Change('img_1')" onMouseOut="Restore('img_1')"></a>
Note :: normal.jpg is the normal state image and over.jpg is the roll over image !!!