// requires prototype

function highlight_question(id) {
  // unhighlight other divs
  $$('div.quiz_question').each(function(e) {e.style.backgroundColor = "#ffffff";}, this);

  // highlight the new div
  $(id).style.backgroundColor = "#ffff99";
  
  return true;
}
