/* REQUIRES: jQuery give anchors with attribute rel="external" a target attribute of "_blank" */
$(function() {
	$("a[rel='external']").attr("target","_blank");
});

/* REQUIRES: jQuery give anchors with attribute rel="self" a target attribute of "_self" */
$(function() {
	$("a[rel='self']").attr("target","_self");
});
/* targeted-links.js */