// JavaScript Document
$(document).ready(function () {
	// initial content
	$("body.page-id-13 #header").html('<div class="harvey"></div>');
	$("#team_group div").hide();
	$("#harvey").show();
	
	$("#team_list a").click(function () {
		$("#team_group div").hide();
		var div = $(this).attr('href');
		$(div).show();
		$("#header").html('<div class="' + div.replace(/#/, '') + '"></div>');
		$(this).blur();
		return false;
	});
});