function init()
		{
			if(document.getElementById && document.createTextNode)
			{
				var mn=document.getElementById('lista-indice-generale');
				var as=mn.getElementsByTagName('a');
				for (var i=0;i<as.length;i++)
				{
					as[i].onclick=function(){show(this);return false}
					as[i].onkeypress=function(){show(this);return false}
				}		
				hidem();
			}
		}  
		function show(l)
		{
			hidem();
			var id=l.href.match(/#(\w.+)/)[1];
			document.getElementById(id).style.display='block';
		}
		function hidem()
		{
				document.getElementById('dl-home').style.display='none';
				document.getElementById('dl-blog').style.display='none';
				document.getElementById('dl-doc').style.display='none';
				document.getElementById('dl-info').style.display='none';
		}
		window.onload=init;