Site hosted by Angelfire.com: Build your free website today!
mouseover="imgover(2,imageA)">Link 1
JESSE RHODES

CHRIS GERMANO

Link 4

Link 5

Link 6

Include the following lines into your html doc for each link.  Replace all instances of "imageA" with a unique name for the image.  This name must be different between each link.

<td ALIGN="center"><b><img BORDER="0" NAME="imageA" SRC="qio1off.gif  **image displayed when mouse is not over image**" width="20" height="68"><br>
<big><big><a HREF="http://link1" TARGET="body" onmouseout="imgout(2,imageA)" onmouseover="imgover(2,imageA)">Link 1</a></big></big></b></td>

 
<script LANGUAGE="JavaScript">
<!--
//Ray Baumbach
//Written For Nebraska Book Co.

/* REMOVE THIS (depending on the number of images you want to accomplish the mouse over function with you would enter the array number in place of the (12). You will need one animated image to use on the mouse over, and a stationary image. I marked all of my stationary images followed with "off". You have to place the "off" image one number behind the "animated" image in the array.) REMOVE THIS */

IMG = new MakeArray(13)
IMG[1] = "../../cbms/images/bookwhite.gif"  
IMG[2] = "../../cbms/images/bookoff.gif"
IMG[3] = "../../cbms/images/diskspin.gif"  
IMG[4] = "../../cbms/images/diskspinoff.gif" 
IMG[5] = "../../cbms/images/news.gif"  
IMG[6] = "../../cbms/images/newsoff.gif" 
IMG[7] = "../../cbms/images/questmrk.gif"  
IMG[8] = "../../cbms/images/questmrkoff.gif" 
IMG[9] = "../../cbms/images/search.gif"
IMG[10] = "../../cbms/images/searchoff.gif"
IMG[11] = "../../cbms/images/exclam.gif"
IMG[12] = "../../cbms/images/exclamoff.gif"
function MakeArray(n) {
              this.length = n              for (var i = 1; i<=n; i++) {
                      this[i] = new Image()                      }
              return this      }
function imgover(x,imgname){
     imgname.src = IMG[x-1]}
function imgout(x,imgname){
     imgname.src = IMG[x]}
//-->
</script>