
<!-- // hide script from old browsers

// JavaScript Code created by:
// Roller JavaScript Coder
// written by:
// Pat Friedl of Nebulus Designs
// http://nebulus.org
// This script is (C) 1999
// and is free for non-profit use. This script may not be
// sold or reditributed without express permission of Nebulus Designs.
// For questions, email roller@nebulus.org

// define  button images-->

if(document.images) {

  image01 = new Image;
  image02 = new Image;
  image11 = new Image;
  image12 = new Image;
  image21 = new Image;
  image22 = new Image;
  image31 = new Image;
  image32 = new Image;
  image41 = new Image;
  image42 = new Image;




  image01.src = "buttons2/propertylistings.jpg";
  image02.src = "buttons2/propertylistingsgrad.jpg";
  image11.src = "buttons2/areainformation.jpg";
  image12.src = "buttons2/areainformationgrad.jpg";
  image21.src = "buttons2/links.jpg";
  image22.src = "buttons2/linksgrad.jpg";
  image31.src = "buttons2/contact.jpg";
  image32.src = "buttons2/contactgrad.jpg";
    image41.src = "buttons2/home.jpg";
  image42.src = "buttons2/homegrad.jpg";}



function swapImg(imgLocation,imgName){
  if(navigator.appName.indexOf("Netscape") != -1){
    tmpImg = FindImage(imgLocation,document);
  } else {
    tmpImg = document.images[imgLocation];
  }
  if(tmpImg != "" && tmpImg != null){
    tmpImg.src = eval(imgName + ".src");
  }
}

function FindImage(name, doc){
  var i, img;
  for (i = 0; i < doc.images.length; i++){
    if (doc.images[i].name == name){ return doc.images[i]; }
  }
  for (i = 0; i < doc.layers.length; i++){
    if ((img = FindImage(name, doc.layers[i].document)) != null) {
      img.container = doc.layers[i];
      return img;
    }
  }
  return null;
}



