Purpose
This preload & rollover (mouseover) script is generaly used for buttons, and
links to another page when clicked on.
Instructions
Copy and paste the coding onto your site and change the orange colored details
to suite your need.
Insert this code into the
HEAD of your HTML document.
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
image1 = new Image();
image1.src = "IMAGE_ON";
// End -->
</script>
Insert this code into the BODY of your HTML document.
<a href="http://URL" onmouseover="image1.src='IMAGE_ON';" onmouseout="image1.src='IMAGE_OFF';"><img
name="image1" src="IMAGE_OFF" border=0></a> |