$(function() {
	$('#nav #intro a').click(function(e) {
		e.preventDefault();
		var target = $(this).attr('id');
		$(this).parents('ul').attr('id', target);
		$('.description').hide();
		$('.'+ target).show();
	});
});