Mouseovers are a great way to aesthetically enhance the look of your website. To add a mouseover, first add the following javascript into the HEAD section of your page.

[script]
[!-- Begin
image0 = new Image();
image0.src = "name-of-mouseover-image.gif";

image1 = new Image();
image1.src = "name-of-mouseover-image.gif";
// End --]
[/script]

If you want to add multiple mouseovers, keep adding on more of the code into the script, but remember to change the #.

Add the following script wherever you want your mouseover to be.

[a href=BLAHBLAH.html onmouseover="image0.src='name-of-mouseover-image.gif';" onmouseout="image0.src='name-of-original-image.gif';"]

To add that second mouseover, use the same code, but change the 0 to 1.