// JavaScript Document
function highlight(id) {
	$(id).style.backgroundColor = "#fff7de";
	$(id).style.color = "#990066";
}
function undo(id) {
	$(id).style.backgroundColor = "";
	$(id).style.color = "";
}
