$(function() {
	$("#people div").hide();
	$("#subnav li a").click(function() {
		return showPerson(this.hash.substr(1));
	});
	if (window.location.hash != "") {
		showPerson(window.location.hash.substr(1));
		scroll(0,0);
	}
});

function showPerson(divId) {
//		$("#content").css("background", "none");
//		$("#container").css({ background: "url(/images/our-team-bg.jpg) left top no-repeat" });
		$("#content").css({ background: "url(/images/our-team-bg.jpg) left -85px no-repeat" });
//		$("#content").css("background-position","left top");
		$("#footer").css({ top: "535px" });
		$("#people div").hide();
		$("#"+divId).show();
		$("#subnav").addClass("away");
		return false;
}