// JavaScript Document
function AX_mostraSottoMenu(id){
	if (document.getElementById(id) != null){
		document.getElementById(id).style.visibility = "visible"
		var posLeft = parseInt(document.getElementById(id).parentNode.offsetLeft);
		
		if (navigator.userAgent.search("MSIE 7") != -1){
			var posTop = parseInt(document.getElementById(id).parentNode.parentNode.offsetHeight);
			document.getElementById(id).style.top = posTop + 'px';
		}
		
		var posFine = parseInt(document.getElementById(id).offsetWidth) + posLeft;
		var schermo_x = document.documentElement.clientWidth;

		if (posFine > schermo_x){
			var differenza = posFine - schermo_x;
			document.getElementById(id).style.left = posLeft - differenza +'px';
		}else{
			document.getElementById(id).style.left =  posLeft + 'px';
		}
	}
}
function AX_nascondiSottoMenu(id){
	if (document.getElementById(id) != null){
		document.getElementById(id).style.visibility = "hidden"
	}
}
function AX_apriSottoMenu(id){
	if (document.getElementById(id) != null){
		document.getElementById(id).style.visibility = "visible"
	}
}


function AX_posizioneMenu(padre, riga, figlio){
	if (document.getElementById(figlio) != null){
		var left, top;
		if (navigator.userAgent.toLowerCase().search("firefox") != -1) {
			left = document.getElementById(padre).offsetLeft;
			top = document.getElementById(padre).offsetTop;
		}
		else {
			left = 0;
			top = 0;
		}
		
		document.getElementById(figlio).style.top = top + document.getElementById(riga).offsetTop - 6 + 'px';
		//6 è l'altezza della riga ocn gli ancoli smussati
		document.getElementById(figlio).style.left = left + document.getElementById(padre).offsetWidth + 'px';
	}
}
