$(function() {
	// linking of notes and references
	$(".ref").click(function() {
		$(".ref, .note").removeClass("highlight");
		$("#note" + $(this).attr("id").substr(3)).addClass("highlight");
	});
	$(".note sup a").click(function() {
		$(".ref, .note").removeClass("highlight");
		$("#ref" + $(this).closest(".note").attr("id").substr(4)).addClass("highlight");
	});
});

