// Adams Storage Tab Rollover
// March 30 2007
// YellowDawg.com
Rollimage = new Array();

Rollimage[0] = new Image
Rollimage[0].src = "images/bttn_tab_victoria_up.png";

Rollimage[1] = new Image
Rollimage[1].src = "images/bttn_tab_victoria_down.png";

Rollimage[2] = new Image
Rollimage[2].src = "images/bttn_tab_langford_up.png";

Rollimage[3] = new Image
Rollimage[3].src = "images/bttn_tab_langford_down.png";

Rollimage[4] = new Image
Rollimage[4].src = "images/bttn_tab_TnC_up.png";

Rollimage[5] = new Image
Rollimage[5].src = "images/bttn_tab_TnC_down.png";

function SwapOut0(){
    document.victoria.src = Rollimage[1].src;
    return true;
  }

  function SwapBack0(){
    document.victoria.src = Rollimage[0].src; 
    return true;
  }
  
function SwapOut1(){
    document.langford.src = Rollimage[3].src;
    return true;
  }

  function SwapBack1(){
    document.langford.src = Rollimage[2].src; 
    return true;
  }
  
function SwapOut2(){
    document.tnc.src = Rollimage[5].src;
    return true;
  }

  function SwapBack2(){
    document.tnc.src = Rollimage[4].src; 
    return true;
  }