Rollimage = new Array();
Rollimage[0] = new Image();
Rollimage[0].src = "info1.jpg";
Rollimage[1] = new Image();
Rollimage[1].src = "info2.jpg";
Rollimage[2] = new Image();
Rollimage[2].src = "buy1.jpg";
Rollimage[3] = new Image();
Rollimage[3].src = "buy2.jpg";


function SwapOutInfo() {

 document.info.src = Rollimage[1].src;
 return true;
}


function SwapBackInfo(){

 document.info.src = Rollimage[0].src;
 return true;
 }


function SwapOutBuy() {
 document.buy.src = Rollimage[3].src;
 return true;
}

function SwapBackBuy(){
 document.buy.src = Rollimage[2].src;
 return true;
 }

