//make external links
$(document).ready(function(){
	$("a[rel='external']").click(function(){
		window.open(this.href, "_blank");
		return false;
	});
 });
