function bgOn(thisParagraph) {
    thisParagraph.style.backgroundColor = '#CCCCCC';
}

function bgOff(thisParagraph) {
    thisParagraph.style.backgroundColor = '#EDECEC';
}

