$(document).ready(function() {
	// abrir links externos em uma nova janela
	var host = window.location.host.toLowerCase();
	$("a[href^='http']:not([href^='http://" + host + "']):not([href^='http://www." + host + "'])").attr('target', '_blank');
});
