	function displayFAQ(id)
	{
		var para = document.getElementById(id + "Para");
		var arrow = document.getElementById(id + "Arrow");
		arrow.src = "http://192.168.201.10/DakotaStaffing/images/gr_SmallBlueArrowDown.gif";
		var text = document.getElementById(id + "Text");
		text.style.display = "block";
		para.onclick = function() { hideFAQ(id); }
	}
	
	function hideFAQ(id)
	{
		var para = document.getElementById(id + "Para");
		var arrow = document.getElementById(id + "Arrow");
		arrow.src = "http://192.168.201.10/DakotaStaffing/images/gr_SmallBlueArrowRight.gif";
		var text = document.getElementById(id + "Text");
		text.style.display = "none";
		para.onclick = function() { displayFAQ(id); }
	}
