Thanks for this piece of code which solved a similar problem I had. My only question is this: after I apply the code as instructed and hover over an image (the onMouseOver bit) it does not return to the original image after I move the mouse off or away from that image.
What command/attribute do I need to use to perform the return to normal state function?
Thanks in advance.
DaDon
QUOTE(maleman @ Mar 13 2006, 06:21 AM)

Looks like you to need to use a little scripting to do that. It goes somethin like this:
Try putting an onMouseOver in your FAQ link.
CODE
<head>
<script>
<!--
function bip() {
document.images.pic.src = "someOtherURL";
}
//-->
</script>
</head>
<body>
<!--hovering over a link-->
<a href="#" onMouseOver="bip()">The Link</a>
<!--hovering over a pic-->
<img src="someURL" onMouseOver="bip()">
<!--This is the pic that will swap-->
<img src="someURL" name="pic">
</body>
