function mouseOverPhoneEffect(myButton, mOption, minorDescription) {
    var tdBackground = document.getElementById(minorDescription)
    switch (mOption) {
        case 'Over':
            tdBackground.style.background = '#000041';
            myButton.style.background = 'white';
            myButton.style.color = '#000041';
            break;
        case 'Out':
            tdBackground.style.background = 'white';
            myButton.style.background = '#000041';
            myButton.style.color = 'white';
            break;
    }
}