/*
I append the full url of the hyperlink to each link within any element given the class "references"
(use for print style sheets and hide the added printLink span in the screen stylesheet).

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
Version: 20090122 changed container element to a class rather than ID
*/

var printLinks = function() {
	// add a span to each followup link containing the uri of the link
	$('.references a').each(function() {
		$(this).after('<span class="printLink"> ('+ this.href + ') </span>')
 		}
	);
}
$(printLinks);
