$(document).ready(function(){
	$('#intro a').click(function(){
		var url = this.href;
		$('#intro').fadeOut('slow', function(){
			window.location = url;
		});
		return false;
	});
});
