startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		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;


//funzioni d scroll x colonna laterale nella home
var delta=0;    // spostamento
var inizio=5;   // posizione iniziale del testo in pixel
var fine=-450   // posizione finale del testo
var attesa=50;  // millisecondi di attesa 
var pos=inizio; // variabile corrente che memorizza la posizione
	
	
	
	
function muovi() {
    if (((pos==fine)&&(delta==-1))||((pos==inizio)&&(delta==1))) delta=0;
   pos=pos+delta;
    document.getElementById('scroll').style.top=pos;
    if (delta!=0) setTimeout('muovi()',2);
  }
  