$(document).ready(function() {
	$("sup").each(function() {
		var n = $(this).text() - 1;
			fntext = $("ol.notes li:eq("+n+")").html();
		$(this).css("color","#4B5A7D").append("<div class='tooltip'>"+fntext+"</div>");
	});

	$("ol.notes").before("<h3 class='shownotes'>Show All Footnotes</h3>").css("border-top","none").hide();
	$(".shownotes").click(function() {
		if ($("ol.notes").is(":visible")) { $(this).text("Show All Footnotes"); }
		else { $(this).text("Hide Footnotes"); }
		$("ol.notes").slideToggle();
	});
});
