<!--

  names = new Array("aboutus","television","sports","clientrepresentation","contactus");
  filenames = new Array("about_us","television","sports","client_representation","contact_us");

  currentsubnavdiv = "";
  currentsubnav = "";

  function navOn (imageName, fileName) {
    if (document.images) {
      for (n=0; n<names.length; n++) {
        if (imageName == names[n]) {
          document.images[imageName].src = "/images/main/nav/" + fileName + "_on.gif";
        } else {
          document.images[names[n]].src = "/images/main/nav/" + filenames[n] + ".gif";
        }
      }
    }

    if (document.getElementById) {
      for (n=0; n<names.length; n++) {
        obj = document.getElementById(names[n] + "sub");

        if (obj) {
          if (imageName == names[n]) {
            obj.style.display = "";
          } else {
            obj.style.display = "none";
          }
        }
      }
    }
  }

  function navOff (imageName, fileName) {
    if (imageName == 'contactus') {
      if (document.images) {
        document.images[imageName].src = "/images/main/nav/" + fileName + ".gif";
      }

      if (document.getElementById) {
        for (n=0; n<names.length; n++) {
          obj = document.getElementById(names[n] + "sub");

          if (currentsubnavdiv == "") {
            if (obj) {
              obj.style.display = "none";
            }
          } else {
            if (names[n] == currentsubnavdiv) {
              if (obj) {
                obj.style.display = "";
              }

              if (document.images) {
                document.images[currentsubnavdiv].src = "/images/main/nav/" + filenames[n] + "_on.gif";
              }
            } else {
              if (obj) {
                obj.style.display = "none";
              }
            }
          }
        }
      }
    }
  }

  function subNavDivOff (imageName, fileName) {
    if (document.images) {
      document.images[imageName].src = "/images/main/nav/" + fileName + ".gif";
    }

    if (document.getElementById) {
      for (n=0; n<names.length; n++) {
        obj = document.getElementById(names[n] + "sub");

        if (currentsubnavdiv == "") {
          if (obj) {
            obj.style.display = "none";
          }
        } else {
          if (names[n] == currentsubnavdiv) {
            if (obj) {
              obj.style.display = "";
            }

            if (document.images) {
              document.images[currentsubnavdiv].src = "/images/main/nav/" + filenames[n] + "_on.gif";
            }
          } else {
            if (obj) {
              obj.style.display = "none";
            }
          }
        }
      }
    }
  }

  function subNavOn (imageName) {
    if (imageName == 'contactussubnav') {
      fileName = 'contactus';
    } else {
      fileName = imageName;
    }

    if (document.images) {
      document.images[imageName].src = "/images/main/subnavs/" + fileName + "_on.gif";
    }
  }

  function subNavOff (imageName) {
    if (imageName == 'contactussubnav') {
      fileName = 'contactus';
    } else {
      fileName = imageName;
    }

    if (document.images) {
      if (currentsubnav == "") {
        document.images[imageName].src = "/images/main/subnavs/" + fileName + ".gif";
      } else {
        if (imageName == currentsubnav) {
          document.images[imageName].src = "/images/main/subnavs/" + currentsubnav + "_on.gif";
        } else {
          document.images[imageName].src = "/images/main/subnavs/" + fileName + ".gif";
        }
      }
    }
  }

//-->
