Back to Scripts page
Click in the box below, select all and copy to grab the script
<HTML> <HEAD> <TITLE>Image Test</TITLE> <SCRIPT LANGUAGE=JAVASCRIPT> <!-- Hide script from old browsers // This script copyright 1997, Tom Negrino and Dori Smith. // This script is from "JavaScript for the WWW, Visual QuickStart Guide, 2nd Ed." // For more information, see <http://www.chalcedony.com/javascript/>. // This script may be used and modified, but the copyright notice must remain intact. if (document.images) { arrowRed = new Image arrowBlue = new Image arrowRed.src = 'redArrow1.gif' arrowBlue.src = 'blueArrow1.gif' } else { arrowRed = "" arrowBlue = "" document.arrow = "" } // End hiding script from old browsers --> </SCRIPT> </HEAD> <BODY BGCOLOR="WHITE"> <CENTER><A HREF="next.html" onmouseover="document.arrow.src=arrowRed.src" onmouseout="document.arrow.src=arrowBlue.src"> <IMG SRC="blueArrow1.gif" WIDTH="300" HEIGHT="82" BORDER="0" NAME="arrow"></A> </CENTER> </BODY> </HTML>