  //Variables used by the animated division.
  var IncX = parseInt(10);
  var IncY = parseInt(2);
  var verIntervalID;
  var horIntervalID;
  var theInterval = 0.1;
  var Xdir = 0;
//  var selectedMajorCat = "ContactUs";
  var selectedMinorCat = "ContactUs";
  
  //This function displays the appropriate division.
//  function setMajorDivision(theCat)
// {

//    var DivName = "";
    //Switch off the division for the visible category.
//    switch (selectedMajorCat) {
//      case "WhatWeOffer":
//        DivName = "WWO_Detail";
//        break;
//      case "ContactUs":
//        DivName = "WWO_General";
//        break;
//    }

//    var theVisDiv = document.getElementById(DivName);
//    theVisDiv.style.visibility = "hidden";

    //Switch on the division for the new category.
//    switch (theCat) {
//      case "WhatWeOffer":
//        DivName = "WWO_Detail";
//        break;
//      case "ContactUs":
//        DivName = "WWO_General";
//        break;
//    }

//    if (theCat == "WhatWeOffer")
//    {
//      setMinorDivision("Clothing");
//    }  else {
//     setMinorDivision("Close");
//    }

//    var theVisDiv = document.getElementById(DivName);
//    theVisDiv.style.visibility = "visible";

//    selectedMajorCat = theCat;
//  }


  //This function displays the appropriate division.
  function setMinorDivision(theCat)
  {
    //Valid Category names are Clothing, Promos, Signs and Embroidery

    var theVisDiv = document.getElementById(selectedMinorCat);
    theVisDiv.style.visibility = "hidden";

    if (theCat != "Close") 
    {
      var theVisDiv = document.getElementById(theCat);
      theVisDiv.style.visibility = "visible";
      selectedMinorCat = theCat;
    }    
  }

