<!-- hide from non JavaScript Browsers

  Rollimage = new Array()

  Rollimage[0]= new Image(91,100)
  Rollimage[0].src = "home.jpg"

  Rollimage[1] = new Image(91,100)
  Rollimage[1].src = "home_over.jpg"
  
  Rollimage[2]= new Image(229,100)
  Rollimage[2].src = "acoustic.jpg"

  Rollimage[3] = new Image(229,100)
  Rollimage[3].src = "acoustic_over.jpg"
  
  Rollimage[4]= new Image(174,100)
  Rollimage[4].src = "loud.jpg"

  Rollimage[5] = new Image(174,100)
  Rollimage[5].src = "loud_over.jpg"

  Rollimage[6]= new Image(161,100)
  Rollimage[6].src = "web.jpg"

  Rollimage[7] = new Image(161,100)
  Rollimage[7].src = "web_over.jpg"

  Rollimage[8]= new Image(72,100)
  Rollimage[8].src = "info.jpg"

  Rollimage[9] = new Image(72,100)
  Rollimage[9].src = "info_over.jpg"


  function SwapOutHome(){
    document.home_b.src = Rollimage[1].src;
    return true;
  }

  function SwapBackHome(){
    document.home_b.src = Rollimage[0].src; 
    return true;
  }
  
  function SwapOutAcoustic(){
    document.acoustic_b.src = Rollimage[3].src;
    return true;
  }

  function SwapBackAcoustic(){
    document.acoustic_b.src = Rollimage[2].src; 
    return true;
  }
  
    function SwapOutLoud(){
    document.loud_b.src = Rollimage[5].src;
    return true;
  }

  function SwapBackLoud(){
    document.loud_b.src = Rollimage[4].src; 
    return true;
  }

  function SwapOutWeb(){
    document.web_b.src = Rollimage[7].src;
    return true;
  }

  function SwapBackWeb(){
    document.web_b.src = Rollimage[6].src; 
    return true;
  }

  function SwapOutInfo(){
    document.info_b.src = Rollimage[9].src;
    return true;
  }

  function SwapBackInfo(){
    document.info_b.src = Rollimage[8].src; 
    return true;
  }


// - stop hiding          --> 