
function cambiaExternalLinks(){
	$('a[rel=external]').click(function(){
    	window.open(this.href);
		return false;
    });
}

$(document).ready(function(){
	$('a[rel=subir]').click(function(){
		$( 'html, body' ).animate( { scrollTop: 0 }, 'slow' );
	});
});

