/*javascript per menu espandibile*/
window.onload=function(){
if(document.getElementsByTagName && document.getElementById){
    document.getElementById("menuhor").className="jsenable";
    BuildList();
    }
}

function BuildList(){
var hs=document.getElementsByTagName("a");
	for(var i=0;i<hs.length;i++){
		if(hs[i].name=="exp") {
			hs[i].parentNode.onmouseover=function() {show(this);};
			hs[i].parentNode.onmouseout=function() {object=this;timerID=setTimeout('hide();',30);};
		}
	}
}
