$( function(){
	
	Cufon.replace( [ 'h2' , 'label' , '.cufon' ] );
	
});

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

});


$(function() { 
	
	$( ".js-prevent-default" ).click(function( e ){
		
		e.preventDefault();
		
	});
	
});
