// <![CDATA[
$(document).ready(function(){
	
	// Abrir links em uma nova janela
	// 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)');
	});  

	$('.wrapper').corner({
		tl: { radius: 6 },
		tr: { radius: 6 },
		bl: { radius: 6 },
		br: { radius: 6 },
		antiAlias: true,
		autoPad: false,
		validTags: ["div"] 
	});
					   
});
// ]]>
