// JavaScript Document

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("promo");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

// funzione stampa
function stampa_popup() {
var testo = "<html><head><title>"+document.title+"</title><link href=\"/c/agriturist.css\" rel=\"stylesheet\" type=\"text/css\"></head>";
testo += "<body class=\"home\"><table width=\"100%\" border=\"0\"><tr><td class=\"percorsi\"><center><a href=\"javascript:print();\">Clicca per stampare</a><br></td></tr>";
testo += "<tr><td class=\"percorsi\">";
testo += document.getElementById('stampa').innerHTML+"</td></tr>";
testo += "<tr><td class=\"percorsi\" height=\"65\"><center><a href=\"javascript:print();\">Clicca per stampare</a></td></tr></table>";
testo += "</body></html>";
var ident_finestra = window.open("","finestra_stampa","height=350,width=458,scrollbars=yes");
ident_finestra.document.open();
ident_finestra.document.write(testo);
ident_finestra.document.close();
}
//-->