
| <SCRIPT>
// Define the status line
messages which we will be using // NOTE: ie, displayStatus - the prefix display // is the same prefix as some of the Image Objects name created below // and also as an Image prefix name var displayStatus = "Click here for more information about our Fine Displays"; var birdcageStatus = "Click here for more information about our Birdcage Accessories"; var plasticStatus = "Click here for more information about Custom Plastic Fabrication"; // Define & Preload our Images // we are also making sure that there will be no browser compatibility issues if (document.images) { var displayOff = new Image(); var birdcageOn = new Image(); var birdcageOff = new Image(); var plasticOn = new Image(); var plasticOff = new Image(); } // this function will make sure that
there will be no browser compatibility issues // this function will make sure that
there will be no browser compatibility issues </SCRIPT> <BODY> onMouseOver calls the imgOn('display') function which causes 2 things to happen1) swaps out the "Off" image with the "On" image & 2) displays a Status Line Message onMouseOut calls the imgOff('display') function which causes 2 things to happen 1) swaps out the "On" image with the "Off" image & 2) "clears out" the Status Line Message < A HREF="display.htm"onMouseOver="imgOn('display'); return true;" onMouseOut="imgOff('display')"> <IMG NAME="display" SRC="images/displayOff.gif" ALT="Fine Displays"> </A> < A HREF="birdcage.htm"onMouseOver="imgOn('birdcage'); return true;" onMouseOut="imgOff('birdcage')"> <IMG NAME="birdcage" SRC="images/birdcageOff.gif" ALT="Birdcage Accessories"> </A> < A HREF="plastic.htm"onMouseOver="imgOn('plastic'); return true;" onMouseOut="imgOff('plastic')"> <IMG NAME="plastic" SRC="images/plasticOff.gif" ALT="Custom Plastic Fabrication"> </A> |