// Open new window for external links
$(function() {
	$("a[rel='external']").each(function(){
		$(this).attr("target", "_blank");
	});
});

