// JavaScript Document
function toggleFAQ( aQ ) {
  thisQ = document.getElementById( 'support-q' + aQ );
  thisA = document.getElementById( 'support-a' + aQ );
  if( thisA.style.display == "none" ) {
    thisQ.className = "links_bold";
    thisA.style.display = "";
  } 
  else {
    thisQ.className = "links_green";
    thisA.style.display = "none";
  }
}
function expandALL() {
  var count = 1;
  for (count = 1; count <= 149; count++){
  thisQ = document.getElementById( 'support-q' + count );
  thisA = document.getElementById( 'support-a' + count );
//  if( thisA.style.display == "none" ) { 
  thisQ.className = "links_bold";
  thisA.style.display = "";
 // }
  } 
}
function collapseALL() {
  var count = 1;
  for (count = 1; count <= 149; count++){
  thisQ = document.getElementById( 'support-q' + count );
  thisA = document.getElementById( 'support-a' + count );
  thisQ.className = "links_green";
  thisA.style.display = "none";
  }
}

