Rollimage = new Array()

Rollimage[0]= new Image(200,240)

Rollimage[0].src = "http://www.dan-foster.com/images/fakephoto.jpg"

Rollimage[1] = new Image(200,240)

Rollimage[1].src = "http://www.dan-foster.com/images/me in green.jpg"  // << This is the rollover image

function SwapO(){

  document.image.src = Rollimage[1].src;

  return true;

}

function SwapB(){

  document.image.src = Rollimage[0].src; 

  return true;

}
