﻿function changeInput(clientID) { //replaces input text and swaps css class to change text color and size
    document.getElementById(clientID).className = 'inputSearchActive';
    document.getElementById(clientID).value = '';
}
