$(document).ready(function(){

	// Function for creating proper grid spacing and row divisions on Athletes pages.
	
	$('div#athletespace a:nth-child(3n)').removeClass('grid-rightmargin').after('<div class="rowspacer"></div>');
	
	// Adds lightbox functionality for lower portions of WTC pages.
	
	$('.plates_posts p a').addClass('fbox');
	
	// Function for creating proper grid spacing and row divisions on Team page.
	
	$("#team_container .team-post:nth-child(3n)").css("margin-right", "0");
	
	// Team thumbs hover effect
	
	$('.team-profile-pic-thumb').hover(function() {
	
		$(this).find('img').stop().animate({"opacity": .9}, 150, 'swing');
	
	}, function() { 
	
		$(this).find('img').stop().animate({"opacity": 1}, 150, 'swing');
	
	});
	
});



