$(document).ready(function() {
	$("#team-list a").each(function() {
		if(this.href == window.location) {
			$(this).addClass("active");
		}
	});
});
