$(document).ready(function() {
	$('#about').hide();
	$('#about1').hide();
	$('#about2').hide();
	// Show Whole Thing
	$('a#showHide').click(function() {
		$('#about').toggle('slow');
		return false;
	});
	
	// Show First area
	$('a#showHide1').click(function() {
		$('#about1').toggle('slow');
		return false;
	});
	
	// Show Second Area
	$('a#showHide2').click(function() {
		$('#about2').toggle('slow');
		return false;
	});
});