sezioni=['Home','Formazione','Servizi','News/Eventi','Download','Contatti'];
link=['index.html','formazione.html','servizi.html','news.html','download.html','contatti.html'];

function linka(indice){
  collegamento=link[indice-1];
  window.open(collegamento,'_self');
}
function generamenu(current){
  document.write('<img src="bnova_transp.png"><br>');
  document.write('<div style="position:absolute;top:125px;">');
  for(i=1;i<7;i++){

  position=((i-1)*170)+20;
  indice=i;
  if(i==current){
	indice = i+'_on';

  }
  
  document.write('<div onMouseUp="" onclick="this.style.border= \' solid 1px #990000 \' ;linka('+i+');" style="text-align:center;padding-top:80px;left:'+ position +'px;position:absolute;width:125px;height:auto;background:url(./images/portable/x'+ indice +'.png) top -20px no-repeat;"><span>'+sezioni[i-1]+'</span></div>')
 };
			document.write('</div>');
}
