function highlightThis(obj) {
  obj.parentNode.parentNode.parentNode.style.backgroundColor='#fff3de';
  var a = obj.parentNode.parentNode.parentNode.getElementsByTagName("a");
  for(var i = 0; i < a.length; i++) {
    a[i].style.backgroundColor='#fff3de';
    a[i].style.color='#ff0000';
  }
}

function lowlightThis(obj) {
  obj.parentNode.parentNode.parentNode.style.backgroundColor='#ffffff';
  var a = obj.parentNode.parentNode.parentNode.getElementsByTagName("a");
  for(var i = 0; i < a.length; i++) {
    a[i].style.backgroundColor='#ffffff';
    a[i].style.color='#000000';
  }
}

function highlightThat(obj) {
  obj.style.backgroundColor='#fff3de';
  obj.style.color='#ff0000';
  obj.parentNode.parentNode.parentNode.style.backgroundColor='#fff3de';
}

function lowlightThat(obj) {
  obj.style.backgroundColor='#ffffff';
  obj.style.color='#000000';
  obj.parentNode.parentNode.parentNode.style.backgroundColor='#ffffff';
}

function highlightTheOther(obj) {
  obj.style.backgroundColor='#fff3de';
  var h3 = obj.getElementsByTagName("h3");
  for(var i = 0; i < h3.length; i++) {
    h3[i].style.backgroundColor='fff3de';
    h3[i].style.color='#ff0000';
  }
}

function lowlightTheOther(obj) {
  obj.style.backgroundColor='#ffffff';
  var h3 = obj.getElementsByTagName("h3");
  for(var i = 0; i < h3.length; i++) {
    h3[i].style.backgroundColor='ffffff';
    h3[i].style.color='#000000';
  }
}