/** 
 * Questo serve per correggere i bug di IE che non consentirebbero di
 * visualizzare correttamente il menu a comparsa...
 */

// JavaScript Document
// JavaScript Document

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

printSaluto = function() {
	if(document.all && document.getElementById) {
		
	}
}

window.onload = printSaluto();
