function changeButtonToWhite() {
    var regButton = document.getElementById('registrationButton');
    regButton.className = 'whiteButton';
}

function changeButtonToGray() {
    var regButton = document.getElementById('registrationButton');
    regButton.className = 'grayButton';
}