$(document).ready(function() {
	/*
	  Usage:
	  <a href="http://www.google.com" rel="external">lepinskidesign.com.br</a>
	*/
	$('a[rel="external"]').click(function(){
		this.target = "_blank";
	});
	
});
