
  Rollimage = new Array()

  Rollimage[0]= new Image(121,153)
  Rollimage[0].src = "/images/kid-b_graham-art.png"

  Rollimage[1] = new Image(121,153)
  Rollimage[1].src = "/images/kid-b_graham-credit.png"

  function SwapOut(){
    document.Kid.src = Rollimage[1].src;
    return true;
  }

  function SwapBack(){
    document.Kid.src = Rollimage[0].src; 
    return true;
  }

