function tabella(testo,destinazione) {
var presente = window.location.pathname;
var nomehost = window.location.hostname;
destinazione =  destinazione;
if ("/" + destinazione == presente ) {
document.write("<td class='tabella' bgcolor='#CCCCCC'><div align='center' class='basetxt'><b><font color='#660000'>" + testo + "</font></b></div></td>") ;
} 
else {
document.write("<td class='tabella' bgcolor='#FFE9A6'><div align='center' class='basetxt'><a href='"+ destinazione + "'>" + testo + "</a></div></td>") ;
}
}
document.write("<table width='100%' border='0' cellspacing='4' cellpadding='0'><tr>");
tabella("Chi Siamo","chisiamo.htm");
tabella("Finalità","finalita.htm");
tabella("Come Operiamo","comeoperiamo.htm");
tabella("Bollettino","bollettino.htm");
tabella("Iniziative","iniziative.htm");
tabella("Email","mailto:info@cauterium.org");
document.write("</tr><tr>");
document.write("<td colspan=6><Table align=center cellpadding=2><Tr>");
tabella("Collana Cauterium","cauterium.htm");
tabella("Collana Historia","historia.htm");
tabella("Collana Scientia ac Agnitio","scientia.htm");
tabella("Carolina Delburgo","delburgo1.htm");
document.write("</Tr></table>");
document.write("</tr></table>");

