$(document).ready( function() {
	// make links with rel="external" open in new window
	$("a[rel='external']").click( function(e) {
		window.open($(this).attr('href'));
		e.preventDefault();
	});
});
