var texto=new Array ();

texto[0]=new Array ('');

texto[1]=new Array ('<H2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;History</h2>');

texto[5]=new Array ('<br>Oleic history and tradition are linked in the Ribera of Navarra.');

texto[2]=new Array ('<br><br>The history of the Ribera of Navarra, and particularly that of Cascante, is the history of its olive trees and oils.<br><br>LThe first news of olive cultivation dates back from <b>Roman times</b>, when the excellent oils that were produced in these lands were used to pay part of the taxes.<br><br>');

texto[3]=new Array ('Between 1930-1960, olive cultivation reached its peak in our region. It was a moment of great splendour, in which our oils gained recognition through many prizes, most importantly the gold medal awarded in the 1st World Fair in Seville.<br>');

texto[4]=new Array ('<br>Our area has been and still is a region that produces <b>high quality oils</b> for two reasons, the first and foremost is, together with the climate, the type of olive (empeltre) and the second is that production has always been given great importance in the area, using high quality olives to produce our oil.');

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]);
}

