var texto=new Array ();

texto[0]=new Array ('');

texto[1]=new Array ('<H2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ölsorten</h2>');

texto[2]=new Array ('Auf dem Markt finden wir drei Olivenölsorten: <b>Natives Olivenöl</b>, Olivenöl und Oliventreberöl<br><br>');

texto[3]=new Array ('<b>ÖLSORTEN</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]);
}
