// JavaScript Document
// JavaScript Document
$(document).ready(function() {
	$('#about_hello').css('display', 'block');
	$('#about_resume').show();
	$('#about_follow').show();
		$('#con1').hide();
		$('#con3').hide();
	$('#about_hello').click(function() {
		$('#con2').show();
		$('#con1').hide();
		$('#con3').hide();
	});
	
	$('#about_resume').click(function() {
		$('#con2').hide();
		$('#con1').show();
		$('#con3').hide();;
	});
	
	$('#about_follow').click(function() {
		$('#con2').hide();
		$('#con1').hide();
		$('#con3').show();
	});
	
		   
});

