function caricavett () {
	linkev = new Array();
	textev = new Array();
	
	linkev[0]="evento1.htm";
	linkev[1]="evento2.htm";
	linkev[2]="evento3.htm";
	linkev[3]="evento4.htm";
	linkev[4]="evento5.htm";
	linkev[5]="evento6.htm";
	linkev[6]="evento7.htm";
	linkev[7]="evento8.htm";
	linkev[8]="evento9.htm";
	linkev[9]="evento10.htm";
	linkev[10]="evento11.htm";
	
	
	textev[0]="35&deg; Global Human Resource Management Conference";
	textev[1]="2&deg; Corso Teorico-Pratico per il Trattamento Incruento del Piede Torto Congenito";
	textev[2]="Emerson Copeland Europe Distributors Meeting 2003";
	textev[3]="Third International Executive Conference on Photovoltaic Power Systems";
	textev[4]="29&deg; Campionato Triveneto di Sci per Dirigenti di Aziende Industriali";
	textev[5]="Patrimonio Culturale: Un Ponte verso un Futuro Condiviso";
	textev[6]="Attualit&agrave; in Obesit&agrave; e sue complicanze";
	textev[7]="Attualit&agrave; in tema di complicanze croniche del Diabete Mellito";
	textev[8]="Inaugurazione ''Qui ENEL''";
	textev[9]="Voler bene all'Italia";
	textev[10]="ESF ABSUMMIT 2006 Gala Dinner";	
}

function jspagination2 (posiz) {
	caricavett();
	
	
	lungvett=textev.length;
	if (posiz<=0) {
		document.write('<span class="disabled"><<</span>');
	} else {
		linkevstamp='<a href="'+linkev[posiz-1]+'" alt="'+textev[posiz-1]+'" title="'+textev[posiz-1]+'"><<</a>';
		document.write(linkevstamp);
	}
	if (posiz>=0) {
		stamp='<span class="current2">'+textev[posiz]+'</span>';
		document.write(stamp);
	}
	
	
	if (posiz+1==lungvett) {
		document.write('<span class="disabled">>></span>');
	} else {	
		linkevstamp='<a href="'+linkev[posiz+1]+'" alt="'+textev[posiz+1]+'" title="'+textev[posiz+1]+'">>></a>';
		document.write(linkevstamp);
	}
}

function jsmenulat () {
	
	lungvett=textev.length;
	for (i=0; i<lungvett; i++)
	{
		document.write('<dd><a id="ml-ev'+(i+1)+'" href="'+linkev[i]+'">'+textev[i]+'</a></dd>');
	}
}

function jselencoev () {
	
	lungvett=textev.length;
	document.write('<ul class="elenco">');
	for (i=0; i<lungvett; i++)
	{
		document.write('<li class="elenco"><a href="'+linkev[i]+'">'+textev[i]+'</a></li>');
	}
	document.write('</ul>');
}

