	

	function toggleElementVisible(weaponID)
	{
		var divFaqEntries = document.getElementById('divFaqEntries'+weaponID);
		var imgExpand =  document.getElementById('imgExpand'+weaponID);
		if(divFaqEntries.style.display == 'none')
		{
			divFaqEntries.style.display = 'block';
			imgExpand.src = '/img/expandArrowExpanded.gif';
		}
		else
		{
			divFaqEntries.style.display = 'none';
			imgExpand.src = '/img/expandArrowCollapsed.gif';
		}
	}

	function showAllFAQs()
	{
		jQuery('.divFaqEntries').css('display', 'block');
		jQuery('.imgExpand').attr("src", '/img/expandArrowExpanded.gif');
	}

	function hideAllFAQs()
	{
		jQuery('.divFaqEntries').css('display', 'none');
		jQuery('.imgExpand').attr("src", '/img/expandArrowCollapsed.gif');
	}