var texto=new Array ();

texto[0]=new Array ('');

texto[1]=new Array ('<font face="Times New Roman" size="+1" color="#713800"><br>It is a pleasure and<br> an honour for us</font>');

texto[2]=new Array ('<font face="Times New Roman" size="+1" color="#713800">to be able to offer you<br> the best <b>extra virgin olive oil</b>.</font>');

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]);
}
