// JavaScript Document
function faqShowHide(question){

     // Get all children of node
     var children = question;
	
     // Loop through the children
     for(var c=0; c < children.length; c++) {
		if( children[c].tagName =="DIV"){
				if(children[c].className=="answerShow"){
					children[c].className="answer";
				}else{
					children[c].className="answerShow";
				}
		}
		
	 }
}
