// Adds an "Print this page" link

$(function() {
	var link = $(document.createElement("a")).attr("href", "#").attr("title", "Print this page").append("Print page");
	$(link).click(function() {window.print(); return (false);});
	
	var courtesy = $(document.createElement("div")).attr("id", "courtesy").addClass("clearfix").append(link);
	$("#content_primary > h1:first-child").after(courtesy);
});
