// JavaScript Document
<!--
    // 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) {
  image1on = new Image();
  image1on.src = "/nav/regContact_on.gif";

  image2on = new Image();
  image2on.src = "/nav/actClients_clients.gif";

  image3on = new Image();
  image3on.src = "/nav/regPortfolio_on.gif";

  image1off = new Image();
  image1off.src = "/nav/regContact.gif";

  image2off = new Image();
  image2off.src = "/nav/actClients_clients.gif";

  image3off = new Image();
  image3off.src = "/nav/regPortfolio.gif";

}

function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}

function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}

// -->