// JavaScript Document
  <!-- hide from non JavaScript Browsers

  Rollimage = new Array()

  Rollimage[0]= new Image(28,23)
  Rollimage[0].src = "images/go.jpg"

  Rollimage[1] = new Image(28,23)
  Rollimage[1].src = "images/go_over.jpg"

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

  function SwapBack(){
    document.go.src = Rollimage[0].src; 
    return true;
  }
   function Swap(){
    document.go2.src = Rollimage[1].src;
    return true;
  }

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

// - stop hiding          --> 
