var texto=new Array ();

texto[0]=new Array ('');

texto[1]=new Array ('<H2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Oils</h2>');

texto[2]=new Array ('<br>There are three types of olive oil on the market: <b>Virgin Olive Oil</b>, Olive Oil and Olive-residue oil.<br><br>');

texto[3]=new Array ('<b>TYPES OF OIL</b>');

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]);
}

