$(document).ready(function() {
	// set orgLinks & such to open in a new window
	ext_links = $("a[rel='external']");
	ext_links.attr('title', function(i) {
	    elem = ext_links.eq(i);
	    title = elem.attr('title');
	    if(!title) title = "(opens a new window)";
	    return title;
	});
	ext_links.click(function() {
		window.open(this.href);
		return false;
	});
});
