function switchMatch(theBox) {
    var match = document.getElementById('match').childNodes;
    for(var i = 0; i < match.length; i++) {
        if(match[i].innerHTML) {
            match[i].style.display = 'none';
        }
    }
    document.getElementById(theBox).style.display = 'block';
}
