function montaMenuEmpresa(){
	var distanciaEsquerda = document.body.clientWidth; //screen.availWidth
	if (empresa.style.visibility == "hidden"){
		if(navigator.appName != "Netscape"){
			if (screen.availWidth == '1280'){	
				posicao = ((distanciaEsquerda-770)/2)+310;
				
			}else{
				posicao = ((distanciaEsquerda-770)/2)+300;
			}
			empresa.style.pixelLeft=posicao;
			empresa.style.pixelTop=123;
			empresa.style.visibility="visible";
		}else{
			if (screen.availWidth == '1280'){	
				//posicao = ((screen.availWidth-770)/2)+156;
				posicao = ((distanciaEsquerda-770)/2)+310;
				
			}else{
				//posicao = ((screen.availWidth-770)/2)+146;
				posicao = ((distanciaEsquerda-770)/2)+300;
			}
			empresa.style.left=posicao;
			empresa.style.top=123;
			empresa.style.visibility="visible";
		}		
	}else if (empresa.style.visibility == "visible"){
		empresa.style.visibility="hidden";
	}
}
function montaMenuTipoAVI(){
    tipoRacine.style.visibility="hidden";
	var distanciaEsquerda = document.body.clientWidth; //screen.availWidth
	if (tipoAVI.style.visibility == "hidden"){
		if(navigator.appName != "Netscape"){
			if (screen.availWidth == '1280'){	
				posicao = ((distanciaEsquerda-770)/2)+419;
				
			}else{
				posicao = ((distanciaEsquerda-770)/2)+409;
			}
			tipoAVI.style.pixelLeft=posicao;
			tipoAVI.style.pixelTop=123;
			tipoAVI.style.visibility="visible";
		}else{
			if (screen.availWidth == '1280'){	
				//posicao = ((screen.availWidth-770)/2)+156;
				posicao = ((distanciaEsquerda-770)/2)+419;
				
			}else{
				//posicao = ((screen.availWidth-770)/2)+146;
				posicao = ((distanciaEsquerda-770)/2)+409;
			}
			tipoAVI.style.left=posicao;
			tipoAVI.style.top=123;
			tipoAVI.style.visibility="visible";
		}		
	}else if (tipo.style.visibility == "visible"){
		tipoAVI.style.visibility="hidden";
	}
}
function montaMenuTipoRacine(){
    tipoAVI.style.visibility="hidden";
	var distanciaEsquerda = document.body.clientWidth; //screen.availWidth
	if (tipoRacine.style.visibility == "hidden"){
		if(navigator.appName != "Netscape"){
			if (screen.availWidth == '1280'){	
				posicao = ((distanciaEsquerda-770)/2)+419;
				
			}else{
				posicao = ((distanciaEsquerda-770)/2)+409;
			}
			tipoRacine.style.pixelLeft=posicao;
			tipoRacine.style.pixelTop=143;
			tipoRacine.style.visibility="visible";
		}else{
			if (screen.availWidth == '1280'){	
				//posicao = ((screen.availWidth-770)/2)+156;
				posicao = ((distanciaEsquerda-770)/2)+419;
				
			}else{
				//posicao = ((screen.availWidth-770)/2)+146;
				posicao = ((distanciaEsquerda-770)/2)+409;
			}
			tipoRacine.style.left=posicao;
			tipoRacine.style.top=143;
			tipoRacine.style.visibility="visible";
		}		
	}else if (tipo.style.visibility == "visible"){
		tipoRacine.style.visibility="hidden";
	}
}
function fechaMenu(){
	empresa.style.visibility="hidden";
	tipoAVI.style.visibility="hidden";
	tipoRacine.style.visibility="hidden";
}
