<!--

function preLoad() {
   // In this area I cache the pic that alternates with my pic
  if (window.document.images) {
     family_pic = new Image(100, 100);
     family_pic.src = "newimages/family.jpg";
     my_pic = new Image(100, 100);
     my_pic.src = "newimages/bluebrian.jpg";
  }
}

function myMouseOn(n) {
  var image_on = eval(n + ".src");
  window.document.my_image.src = image_on;
}

function myMouseOff(n) {
  var image_off = eval(n + ".src");
  window.document.my_image.src = image_off;
}
// -->

