Rollimage = new Array()

  Rollimage[0]= new Image(175,174)
  Rollimage[0].src = "quicktour.gif"

  Rollimage[1] = new Image(175,174)
  Rollimage[1].src = "animatedquicktourrollover2.gif"

  Rollimage[3]= new Image(175,174)
  Rollimage[3].src = "fulltour.gif"
  
  Rollimage[4]= new Image(175,174)
  Rollimage[4].src = "animatedfulltourrollover1.gif"
  
  function SwapOut1() {
    document.quicktour.src = Rollimage[1].src; return true;
}

  function SwapBack1() {
    document.quicktour.src = Rollimage[0].src; return true;
}
  function SwapOut2() {
    document.fulltour.src = Rollimage[4].src; return true;
}

  function SwapBack2() {
    document.fulltour.src = Rollimage[3].src; return true;
}