// This breaks the page out of frames from another site.

if (top.location != self.location) {
        top.location = self.location
}


// ON STATES //
if (document.images) {

  childoff = new Image();
  childoff.src = "../images/portraits/b_children.gif";

  petsoff = new Image();
  petsoff.src = "../images/portraits/b_pets.gif";

 
// ON STATES //

  childon = new Image();
  childon.src = "../images/portraits/b_children_on.gif";

  petson = new Image();
  petson.src = "../images/portraits/b_pets_on.gif";

}

function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}

function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}

// PRE-LOAD IMAGES //
function ImagePreLoad() {
  if (document.images) {

    preLoad1 = new Image();
    preLoad1.src = "../images/portraits/b_pets_on.gif";

    preLoad2 = new Image();
    preLoad2.src = "../images/portraits/b_children_on.gif";
   

  }
}
