$(document).ready(function(){
	$('#contenido').fadeIn('slow');
	
	$('a[rel*=external]').click( function() {
		window.open(this.href);
		return false;
	});
	$('a').click(function(){
		var pagina=this.href;
		if(pagina.indexOf('mailto:')==-1 && this.rel!="external"){
			$('#contenido').fadeOut('slow', function(){location.href=pagina;});
			return false;
		}
	});
});


