// JavaScript general functions for App.
$(document).ready(function(){
		
	// Load PNG Fix for IE6
	//$(document).pngFix();
	
	// Procura por todos os links com o atributo rel="externo"
	$("a[rel=externo]").each(function(i){
		// Guarda o valor do title na variável "title"
		var title = $(this).attr('title');
		// Adiciona ao link o atributo target="_blank" e ao title acrescenta um texto.
		$(this).attr('target','_blank').attr('title',title+' (Este link abre em uma nova janela)');
	});  
					   
});
