var texto=new Array ();

texto[0]=new Array ('');

texto[1]=new Array ('<H2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Process</h2>');

texto[2]=new Array ('Below we explain the process we follow at our oil mill in order to obtain <b>the best Extra Virgin Olive Oil</b>.<br><br>');

texto[3]=new Array ('Extra Virgin Olive Oil is <b>the extract obtained from the olive</b>, thus it is elemental that our raw material is in perfect condition when we carry out our elaboration.<br><br>The quality of the product is never improved in the elaboration process, thus if olives are not in an optimal condition, low quality oil is obtained.<br><br>');

texto[4]=new Array ('<br><b>RECEPTION OF THE OLIVE.</b> Farmers bring the olives that have been collected to the mill on a daily basis. After unloading, olives are cleaned.<br><br>First they pass through a winnowing fork, where both leaves and olives that are in a bad condition or broken are discarded.');

function textos (posicion,idioma)
{
	idi=-1;
	switch (idioma)
	{
		case 'e':idi=0;break;
		case 'i':idi=1;break;
		case 'f':idi=2;break;
		case 'a':idi=3;break;
	}
	document.write (texto[posicion][idi]);
}

