
/**
 * Abre um link externo em uma nova janela
 */
$(function() { 
	
	$( ".js-link-externo" ).click(function( e ){
		
		e.preventDefault();
		
		window.open( $(this).attr( 'href' ) );
		
	});

});

/**
 * Scripts 
 */

$(function(){
	
	$( '#js-link-agenda-destaque' ).click(function(){
		
		window.location = RT + 'agenda';
		
	});
	
});









