function mouseOver100() {
document.getElementById("alfredangelo").src="images/AlfredAngelo_C.jpg"
}
function mouseOut100() {
document.getElementById("alfredangelo").src="images/AlfredAngelo.jpg"
}
function mouseOver101() {
document.getElementById("thedessygroup").src="images/Dessy_C.jpg"
}
function mouseOut101() {
document.getElementById("thedessygroup").src="images/Dessy.jpg"
}
function mouseOver102() {
document.getElementById("morilee").src="images/MoriLee_C.jpg"
}
function mouseOut102() {
document.getElementById("morilee").src="images/MoriLee.jpg"
}
function mouseOver103() {
document.getElementById("usangels").src="images/USAngels_C.jpg"
}
function mouseOut103() {
document.getElementById("usangels").src="images/USAngels.jpg"
}
function CacheImages()
{
  if (!document.images) return;

// Substitute your own image names and paths in the img_names
// array below.  NO COMMA after the last name!

  var img_names = new Array(
    "/images/AlfredAngelo_C.jpg",
    "/images/Dessy_C.jpg",
    "/images/MoriLee_C.jpg",
    "/images/USAngels_C.jpg"
  );

  var imgs = new Array();

  for (var i = 0; i < img_names.length; i++)
  {
    imgs[i] = new Image();
    imgs[i].src = img_names[i];
  }
}