/*----------------------------------
Handles the Team Wall Functionality

----------------------------------*/

//Document Ready Function
$(function() {
	
	//swap 
	$('.team-show .photo-wall li').click(function(event) {
		//Select this photo
		$(this).siblings('.current').removeClass('current');
		$(this).addClass('current');
		
		//Show this person's info on the stage
		$('.team-show .person.current').fadeOut().removeClass('current');
		$('.team-show .person').eq($(this).index()).fadeIn().addClass('current');
		
		
		//disable normal link action
		return false;
	});
});
