 $(document).ready(function(){
	// Opens a link into a new window if it has a 'rel=external' tag applied
	$("a[rel='external']").click(function(){
		window.open(this.href);
		return false;
	});
});
