$().ready(function(){
	$("div.people").hide();
	$("h2").click(function(){
		if($(this).children("span").eq(0).text() == "-"){
			$(this).children("span").eq(0).text("+");
			$(this).next().hide("slow");
		} else {
			$("div.people").hide("slow");
			$("span[class=state]").text("+");
			$(this).children("span").eq(0).text("-");
			$(this).next().show("slow");
		}

	})
	
	$("ul.plist li").hover(function(){
		$(this).css("color","#ff8501");
	},function(){
		$(this).css("color","black");
	})
	
})
