$(document).ready(function(){
	$(".people_links").find("a").each(function(i) {
		var str = $(this).attr("href").slice(1);
		$(this).attr("href", str);
	 });
	
	$(".people_item:not(:first)").hide();
	$(".people_links a").eq(0).addClass("active");
	
	$(".people_links a").click(function(){					   
		
		$(".people_links").find("a").each(function(i) {
			$(this).removeClass("active");
		});
		
		$(this).addClass("active");
		
		$(".people_item").hide();
		
		$("div#"+$(this).attr("href")).show();
		
		return false;
	});
});