scrollerCheckElements = new Array("completePageContent");
scrollerSize = scrollerDefaultSize;
window.onresize = checkWindowSize;

var oldFAQ = 0;

function showAnswer(id) {
  idQuestion = "question" + id;
  idAnswer = "answer" + id;
  
  document.getElementById(idQuestion).className = 'color003399';
  document.getElementById(idAnswer).className = 'showAnswer';

  if(oldFAQ != 0 && oldFAQ != id) {
	  idHideQuestion = "question" + oldFAQ;
  	idHideAnswer = "answer" + oldFAQ;
	  document.getElementById(idHideQuestion).className = 'arrow';
  	document.getElementById(idHideAnswer).className = 'hideAnswer';
  }
  oldFAQ = id;
}