// JavaScript Document

var prev= null;

window.onload=function(){
if(document.getElementsByTagName && document.getElementById){
    document.getElementById("menu").className="jsenable";
    BuildList();
	ShowList();
    }
}

function BuildList(){
var hs=document.getElementById("menu").getElementsByTagName("h3");
for(var i=0;i<hs.length;i++){
    hs[i].onclick=function(){
        if(this.parentNode.className!="show"){
            this.parentNode.className="show";
            if(prev && prev!=this.parentNode) prev.className="hide";
            prev=this.parentNode;
            }
        else this.parentNode.className="hide";
        }
    }
} 



function ShowList(){
var hs=document.getElementById("menu").getElementsByTagName("h2");
for(var i=0;i<hs.length;i++){
	    hs[i].onmouseout=function(){
          this.parentNode.className="show";
        }
    }
}
	
//APRI FINESTRA
function finestra(str) {
        searchWin = window.open(str,'finestra','scrollbars=no,width=400px,height=210px,status=no,location=no,toolbar=no, resize=none');
}