<!--

if (jsSupport) {

  // Extend navigation objects

  var navDescrArray = new Array();
  navDescrArray["nav1"] = "Learn about our recent events and design services";
  navDescrArray["nav2"] = "View a collection of our custom floral arrangements";
  navDescrArray["nav3"] = "Meet our event service partners";
  navDescrArray["nav4"] = "Book an appointment by phone, e-mail, or online form";

  for (i in navImg) {
    navImg[i].descrText = navDescrArray[i];
  }

  PreImg.prototype.loaded = false;
  PreImg.prototype.descrID = "linkDescr";
  PreImg.prototype.loadText = loadText;
  PreImg.prototype.clearText = clearText;
  PreImg.prototype.switchStatImg = switchStatImg;

}

// Additional navigation methods

function switchStatImg(action) {

  if (this.loaded == true) {
    this.switchImg(action);
  }

  if (action == "over") {
    this.loadText();
  }
  else {
    this.clearText();
  }
}

// Navigation event handler

function getNavItem(docID, action) {

  if (jsSupport) {

    navImg[docID].switchStatImg(action);
  }
}

// Initialize links

function initLinks(index) {

  if (jsSupport) {

    var docID = navIDArray[index++];
    navImg[docID].switchImg("A");
    setTimeout("navImg['" + docID + "'].loaded = true;", 1000);

    if (index < navIDArray.length) {
      setTimeout("initLinks(" + index + ");", 500);
    }
  }
}

// -->
