$(function(){
	//trim the margin of every 6th child so the pixels fit exactly the width of the content container
	for (var i=6; i<100; i=i+6) {
		$('ul.team-list>li:nth-child('+i+')').css('marginRight', '0');
	}
	
	//subnav click behavior
	$('#teamNav a').click(function(){
		//switch highlighted nav square
		$(this).parent().siblings('.current').removeClass('current');
		$(this).parent().addClass('current');
		
		//parse which button was clicked
		var selection = $(this).text().toLowerCase();
		
		if (selection == "all")
		{
			$('#teamContent div.shader').hide();
		}
		else
		{
			$('#teamContent div.shader').hide();
			$('#teamContent li:not(.'+selection+') div.shader').show();
		}
		
		//stop default a tag behavior
		return false;
	});
});
