
function showTeam(team){
	$('.team').css({"display":"none"});
	$('#'+team).css({"display":"block"});
};

$(function() {
		
	// Show only the first member of the team 
	$('.team').css({"display":"none"});
	$('.team:eq(0)').css({"display":"block"});
	
	// TARGET BLANK XHTML STRICT
	$('a[@rel$="external"]').bind("click", function(){
		this.target = "_blank";
	});
	
	
	

});