// This breaks the page out of frames from another site.

if (top.location != self.location) {
        top.location = self.location
}


// ON STATES //
if (document.images) {

  starTopon = new Image();
  starTopon.src = "images/internal/starTop_on.gif";

  starBottomon = new Image();
  starBottomon.src = "images/internal/starBottom_Gallery_on.gif";

 
// ON STATES //
  starTopoff = new Image();
  starTopoff.src = "images/internal/starTop.gif";

  starBottomoff = new Image();
  starBottomoff.src = "images/internal/starBottom_Gallery.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/internal/starTop_on.gif";

    preLoad2 = new Image();
    preLoad2.src = "images/internal/starBottom_Gallery_on.gif";

   }
}
