<!--
  // Only Navigator 3.x and higher can use graphical javascript for now.
  var lGraphics = (navigator.userAgent.substring(6,9) == "a/3") || 
     (navigator.userAgent.substring(6,9) == "a/4");

  // Set up status bar comments
  var c1Comm = "Tokay Solutions - Welcome";
  var c2Comm = "Tokay Solutions - Services";
  var c3Comm = "Tokay Solutions - Clients";
  var c4Comm = "Tokay Solutions - Contact Us";


  // Set up preloading of onMouseOver images
  if (lGraphics) {
    // Preload the images so when they change it will be instantaneous.
    aImgHolder = new Array();
    aImgHolder[0] = new Image();
    aImgHolder[0].src = "images/bt01a.jpg";
    aImgHolder[1] = new Image();
    aImgHolder[1].src = "images/bt02a.jpg";
    aImgHolder[2] = new Image();
    aImgHolder[2].src = "images/bt03a.jpg";
	aImgHolder[3] = new Image();
    aImgHolder[3].src = "images/bt04a.jpg";
   }
   

  function ChngPic(pcCurImg,pcLoadImg,pcStatName) {
    // This function changes an image, and changes the status bar
    //   pcCurImg is the current image that we want to change
    //   pcLoadImg is the image we want to load (if unselected image), or the number
    //     they want to load (if selected image).
    //   pcStatName is what we want the status bar to say
    //
    if (lGraphics) {
      // Change the graphic.
      if (pcStatName == "") {document.images[pcCurImg].src = pcLoadImg;
      }
      else {
        document.images[pcCurImg].src = aImgHolder[pcLoadImg].src;
      }
   	}
    window.status = pcStatName;
   }
  function Sound(sndAction,sndObj) {
    if (eval(sndObj) != null) {
    if (navigator.appName=='Netscape') eval(sndObj+((sndAction=='stop')?'.stop()':'.play(false)'));
    else if (eval(sndObj+".FileName")) eval(sndObj+((sndAction=='stop')?'.stop()':'.run()'));
   }
   }

// -->