function $(o){return document.getElementById(o);}

/*duvidas.html*/
function exibeEsconte(variavel){
	var exibe=new Array("pergunta1","pergunta2","pergunta3","pergunta4","pergunta5","pergunta6","pergunta7","pergunta8","pergunta9","pergunta10","pergunta11","pergunta12","pergunta13","pergunta14","pergunta15");
	for(var i=0; i<exibe.length; i++){
		if(variavel == exibe[i]){
			if ($(exibe[i]).style.display != "block"){
				$(exibe[i]).style.display = "block";
				$(exibe[i]).style.left = "455px";
				$(exibe[i]).style.position = "absolute";
				$(exibe[i]).style.width = "535px";
				$(exibe[i]).style.height = "500px";	
				$(exibe[i]).style.top = "0px";				
				$('id'+exibe[i]).className = "ativo";
			}else{
				$(exibe[i]).style.display = "none";
				$('id'+exibe[i]).className = "inativo";
			}
		}else{
			$(exibe[i]).style.display = "none";
			$('id'+exibe[i]).className = "inativo";
		}
	}
}