<script language="javascript"> // mouseovers for WebMonster (tm) Networks // by Bill Weinman // (c) 1997 Bill Weinman // If you wish to modify and/or use this script, you are welcome // to do so as long as you give me credit and refer to my // web site at: <http://www.weinman.com/wew/>. // Thanks, ‹ Bill // this script only works on Netscape 3.0 and higher. // preload all the images foo = new Array() for (i = 0; i < 12; i ++) { foo[i] = new Image() } foo[0].src = "/images/hosting-sm.gif" foo[1].src = "/images/hosting-sm-c.gif" foo[2].src = "/images/lists-sm.gif" foo[3].src = "/images/lists-sm-c.gif" foo[4].src = "/images/design-sm.gif" foo[5].src = "/images/design-sm-c.gif" foo[6].src = "/images/books-sm.gif" foo[7].src = "/images/books-sm-c.gif" foo[8].src = "/images/artwork-sm.gif" foo[9].src = "/images/artwork-sm-c.gif" foo[10].src = "/images/monstrett-sm.gif" foo[11].src = "/images/monstrett-sm-c.gif" // this function swaps out the GIFs, and updates the status line. function over(i) { imagename = "/images/" + i + "-sm-c.gif" document.images[i].src = imagename return true; } function out(i) { imagename = "/images/" + i + "-sm-b.gif" document.images[i].src = imagename return true; } </script>