Back to Scripts page
Click in the text area below, select all and copy to grab the script
Script listing:
<HTML> <HEAD> <TITLE>Link Rollover</TITLE> <SCRIPT LANGUAGE=JAVASCRIPT TYPE="TEXT/JAVASCRIPT"> <!-- Hide script from old browsers if (document.images) { arrowRed = new Image arrowBlue = new Image arrowRed.src = "images/redArrow.gif" arrowBlue.src = "images/blueArrow.gif" } else { arrowRed = "" arrowBlue = "" document.arrow = "" } // End hiding script from old browsers --> </SCRIPT> </HEAD> <BODY BGCOLOR=WHITE> <A HREF="next.html" onMouseover="document.arrow.src=arrowRed.src" onMouseout="document.arrow.src=arrowBlue.src"><H1>Next page</H1></A><BR> <IMG SRC="images/blueArrow.gif" WIDTH=147 HEIGHT=82 NAME="arrow"> </BODY> </HTML>