﻿imgset1_01= new Image(330,165);
imgset1_01.src="imgset1_01.gif"; 

imgset1_02= new Image(330,165);
imgset1_02.src="imgset1_02.gif"; 

imgset1_03= new Image(330,165);
imgset1_03.src="imgset1_03.gif"; 

imgset2_01= new Image(330,165);
imgset2_01.src="imgset2_01.gif"; 

imgset2_02= new Image(330,165);
imgset2_02.src="imgset2_02.gif"; 

imgset2_03= new Image(330,165);
imgset2_03.src="imgset2_03.gif"; 


var pea_gallery = new Array("peas_01.gif", "peas_02.gif", "peas_03.gif");
var touch_gallery = new Array("touch_01.gif", "touch_02.gif", "touch_03.gif");




var pindex=0;

function next()	{
pindex++;
if(pindex==3) pindex=0;

document.getElementById('peas').src="images/who_is/" + pea_gallery[pindex];
document.getElementById('touch').src="images/who_is/" + touch_gallery[pindex];

}

function prev()	{
pindex--;
if(pindex==-1) pindex=2;
document.getElementById('peas').src="images/who_is/" + pea_gallery[pindex];
document.getElementById('touch').src="images/who_is/" + touch_gallery[pindex];

}