
$(function() {
	
	$("#aboutmeBtn").click(function(){
		$(".aboutBox").fadeIn("slow");
		$(this).toggleClass("active");
		return false;
	});
	$('#aboutmeBtn').click(function() { if(!$(this).hasClass('active')){
		$(".aboutBox").fadeOut("slow");}
		return false;
	});
		
});
