// JavaScript Document
$(document).ready(function() {
		$(".full a").click(function() {
			//	$(this).parent().parent().hide();
				$("div#bio-main").removeClass("border");
				$("img#profile2").hide();
				$("img#profile1").show();
				$("div#full").show();
				$("div#short").hide();
				$(".person").removeClass("on");
				$(".full").addClass("on");
				return false;
		});
		$(".person a").click(function() {
			//	$(this).parent().parent().hide();
				$("div#bio-main").addClass("border");
				$("img#profile1").hide();
				$("img#profile2").show();
				$("div#short").show();
				$("div#full").hide();
				$(".full").removeClass("on");
				$(".person").addClass("on");
				return false;
		});
});