// JavaScript Document
$(document).ready( function(){
							
	$('a', '.team_names').click( function() {
		return false;									  
	});
							
	$(".description").each( function() {
		$('div:not(.jason)', this).hide();									   
	});
	
	$('.team_names .jason a').addClass('active');
	
	$(".team_names").each( function() {
		
		$('li a', this).click( function() {
									  
			$(".description").children("div").each( function() {
				if($(this).css('display') != "none") {
					$(this).hide();	
				}
			});
			
			$('a', '.team_names').removeClass('active');
			
			var n = $(this).parent().attr('class');
	
			$(".description ."+n).show();
			
			$(".team_names ."+n+" a").addClass('active');
		});
		
	});
	
	
	
});
	
