function cartLinkOver(id) {
  document.getElementById(id).style.color = '#ff0000';
  document.getElementById(id).style.textDecoration = 'underline';
}
function cartLinkOut(id) {
  document.getElementById(id).style.color = '#ffffff';
  document.getElementById(id).style.textDecoration = 'none';
}