// JavaScript Document

  Rollimage = new Array()

  Rollimage[0]= new Image(26,26)
  Rollimage[0].src = "/test/images/GoButton.png"

  Rollimage[1] = new Image(26,26)
  Rollimage[1].src = "/test/images/GoButtonOver.png"

  function SwapOut(){
    document.SearchB.src = Rollimage[1].src;
    return true;
  }

  function SwapBack(){
    document.SearchB.src = Rollimage[0].src; 
    return true;
  }
  