$(document).ready(function(){ 
	
	//Abre links externos em nova janela
	//Dica do site: http://css-tricks.com/snippets/jquery/open-external-links-in-new-window/
	$('a').each(function() {
		var a = new RegExp('/' + window.location.host + '/');
		if(!a.test(this.href)) {
		   $(this).click(function(event) {
			   event.preventDefault();
			   event.stopPropagation();
			   window.open(this.href, '_blank');
		   });
		}
	});
}); 