window.onload = hideDivs;

function hideDivs()
{
	//alert("hello world")
	var tmp;
	tmp = ["divwhattypes","divamend","divhowlong","divapplyinfo","divstatus","divraisedseal","divadoption","divApostille","divAuthorize","divDelayedBirthRec","divCorrectDOB","divForeignAdoption","divGeneralNameCorr","divGivenNameCorr","divReqLegit","divPatAck"];
	var n = tmp.length;
	var i; 
	for (i = 0; i < n; i++)
	{
		document.getElementById(tmp[i]).style.display = "none";
	}
}
function ShowHideFaq(str)
{
	if (document.getElementById(str).style.display == "inline")
		document.getElementById(str).style.display = "none";
	else if(document.getElementById(str).style.display == "none")
		document.getElementById(str).style.display = "inline";
}