function jspagination (posiz) {
link = new Array();
text = new Array();

link[0]="servizi.htm";
link[1]="organizzazione_congressi.htm";
link[2]="organizzazione_conferenze.htm";
link[3]="organizzazione_meeting_convegni.htm";
link[4]="organizzazione_incentive.htm";
link[5]="organizzazione_party_eventi_speciali.htm";
link[6]="organizzazione_convention.htm";
link[7]="organizzazione_mostre.htm";
link[8]="organizzazione_viaggi_culturali.htm";	
link[9]="servizi_specifici.htm";

text[0]="Servizi";
text[1]="Organizzazione Congressi";
text[2]="Organizzazione Conferenze";
text[3]="Organizzazione Meeting e Convegni";
text[4]="Organizzazione Incentive";
text[5]="Organizzazione Party ed Eventi speciali";
text[6]="Organizzazione Convention";
text[7]="Organizzazione Mostre";
text[8]="Organizzazione Viaggi culturali";
text[9]="Servizi in dettaglio";

lungvett=text.length;
if (posiz==0) {
	document.write('<span class="disabled"><<</span>');
} else {
	linkstamp='<a href="'+link[posiz-1]+'" alt="'+text[posiz-1]+'" title="'+text[posiz-1]+'"><<</a>';
	document.write(linkstamp);
}

stamp='<span class="current">'+text[posiz]+'</span>';
document.write(stamp);


if (posiz+1==lungvett) {
	document.write('<span class="disabled">>></span>');
} else {	
	linkstamp='<a href="'+link[posiz+1]+'" alt="'+text[posiz+1]+'" title="'+text[posiz+1]+'">>></a>';
	document.write(linkstamp);
}

}



