﻿/*
I append the full url of the hyperlink to each link within the followup element
Adapted from a script by Richard Czeiger by Jeremy Halliwell jeremy@simplicityweb.co.uk
http://www.grafx.com.au/dik/printLinkURLs.html 
Version: 20060416
Version: 20070828 converted to jquery
*/

var printLinks = function() {
	// add a span to each followup link, displayed only in the print stylesheet, containing the uri of the link
	$('#footnotes a').each(function() {
		$(this).after('<span class="printLink"> ('+ this.href + ') </span>')
 		}
	);
}
$(printLinks);