/*
I append the full url of the hyperlink to each link in the page
(use for print style sheets and hide the added printLink span in the screen stylesheet).

Only required for browsers that don't support CSS2, for other browsers use this

a:link:after {
	content:" ( " attr( href ) ") ";
}
Adapted from a script by Richard Czeiger by Jeremy Halliwell jeremy@simplicityweb.co.uk
http://www.grafx.com.au/dik/printLinkURLs.html 
*/

var printLinks = function( container ) {
	// add a span to each link containing the uri of the link
	$(container+' a').each(function() {
		$(this).after('<span class="printLink"> ('+ this.href + ') </span>')
 		}
	);
}
