﻿var currentSection = false;

function highLightSection(sectionId) {
    if (currentSection) {
        currentSection.className = '';
    }
    var p = document.getElementById(sectionId);

    p.className = 'selectedFAQ';
    currentSection = p;
}