﻿// JScript File
function faq(itemSelecionado)
{
	window.document.getElementById("resposta01").style.display = "none";
	window.document.getElementById("resposta02").style.display = "none";
	window.document.getElementById("resposta03").style.display = "none";
	window.document.getElementById("resposta04").style.display = "none";
	window.document.getElementById("resposta05").style.display = "none";
	window.document.getElementById("resposta06").style.display = "none";
	window.document.getElementById("resposta07").style.display = "none";
	window.document.getElementById("resposta08").style.display = "none";
	window.document.getElementById("resposta09").style.display = "none";
	window.document.getElementById("resposta10").style.display = "none";
	window.document.getElementById(itemSelecionado).style.display =  "";

}

