<!--

var imagesSupported=(document["images"]!=null);

function regularImageFile(imageName) {
  return ("http://www.dynamicintegrations.com/live/images/"+imageName+".gif");
  }
  
function negativeImageFile(imageName) {
  return("http://www.dynamicintegrations.com/live/images/"+imageName+"_over.gif");
 }
 
function cacheImages(index) {
  regularImageObjects[index]=new Image();
  regularImageObjects[index].src=regularImageFile(imageNames[index]);
  negativeImageObjects[index]=new Image();
  negativeImageObjects[index].src=negativeImageFile(imageNames[index]);
 }
 
function hiLiteOn(imageName) {
  if (imagesSupported)
    document.images[imageName].src=negativeImageFile(imageName);
}

function hiLiteOff (imageName) {
  if (imagesSupported)
    document.images[imageName].src=regularImageFile(imageName);
}

// -->


