 activeFAQ = null;
 function toggleFAQ (id) {
	      var aDiv = document.getElementById("a" + id);
	      if (activeFAQ && activeFAQ != aDiv)
		     activeFAQ.style.display = "none";
	      aDiv.style.display = (aDiv.style.display == "block") ? "none" : "block";
	      activeFAQ = aDiv;
 }
 function hoverFAQ (ele, state) {	
	      ele.style.backgroundColor = state ? "#5d5d5d" : "#2b2c2c";
 }
 function initFAQ () {
	      var cid = 0;
	      if (cid) toggleFAQ (cid);
 }
 

