jQuery(document).ready( function($) {
	// kill the widows in all the headers
	$("#main h2 a").each( function( ) {
		$(this).html($(this).text( ).replace(/ (\S+)$/,'&nbsp;$1'));
	});

	// add icons for external links
	$('#main a:not(:has("img")):not("object + a")').filter( function( ) {
		return this.hostname && this.hostname !== location.hostname;
	}).append(' <img src="/images/external.png" alt="external link" style="border:0;margin:0;padding:0;" />');
});