function hoverItemOn(x) {
   x.style.backgroundColor = "#242424";
   x.style.color = "#FFFFFF";
}

function hoverItemOff(x) {
   x.style.backgroundColor = "#EAEAEA";
   x.style.color = "#242424";
}
