Link Pointer
In the old days, pointing was rude. Now, it's a way of life.
Example:
Home
Java Scripts
Web Tools
Menu Tool
F.A.Q.
Follow the editing instructions after the // and within the <!--comment tags--> to customize the
script, then copy and paste it into your HTML editor.
<!--Place this script inbetween the HEAD tags.--> <script language="JavaScript"> <!-- img_on = "on.gif"; img_off = "off.gif"; function imgover(imgname) { imgname.src = img_on; } function imgout(imgname) { imgname.src = img_off; } //--> </script> <!--Place this script anywhere after the <BODY> tag.--> <!--For each line of code, you need to do the following:--> <!--Name your pointer image on.gif and place it in the same directory as this document--> <!--In the IMG tag, adjust the height and width attributes to the dimensions of your image.--> <!--In the A HREF tag, place your URL within the quotation marks.--> <p> <IMG NAME="img_01" SRC="off.gif" WIDTH="7" HEIGHT="7" BORDER="0"><A HREF="http://www.rainbow.arch.scriptmania.com/" onMouseOver="imgover(img_01)" onMouseOut="imgout(img_01)">Home</a><Br> <IMG NAME="img_02" SRC="off.gif" WIDTH="7" HEIGHT="7" BORDER="0"><A HREF="http://www.rainbow.arch.scriptmania.com/scripts/" onMouseOver="imgover(img_02)" onMouseOut="imgout(img_02)">Java Scripts</a><Br> <IMG NAME="img_03" SRC="off.gif" WIDTH="7" HEIGHT="7" BORDER="0"><A HREF="http://www.rainbow.arch.scriptmania.com/tools/" onMouseOver="imgover(img_03)" onMouseOut="imgout(img_03)">Web Tools</a><Br> <IMG NAME="img_04" SRC="off.gif" WIDTH="7" HEIGHT="7" BORDER="0"><A HREF="http://www.rainbow.arch.scriptmania.com/menus/" onMouseOver="imgover(img_04)" onMouseOut="imgout(img_04)">Menu Tool</a><Br> <IMG NAME="img_05" SRC="off.gif" WIDTH="7" HEIGHT="7" BORDER="0"><A HREF="http://www.rainbow.arch.scriptmania.com/faq.html" onMouseOver="imgover(img_05)" onMouseOut="imgout(img_05)">F.A.Q.</a></font><Br> <br>