/*
	if($recentSummary->stats->team == 100)
	{
		echo ' <img width=22 height=22 class="blueTeam" src="http://ddragon.leagueoflegends.com/cdn/5.2.1/img/champion/'.$champName->key. '.png"/>';
	}
	
	for($i = 0; $i <12; $i++)
	{
		if($recentSummary->fellowPlayers[$i]->teamId)
		{
			if($recentSummary->fellowPlayers[$i]->teamId == 100)
			{
				echo ' <img width=22 height=22 class="blueTeam" src="http://ddragon.leagueoflegends.com/cdn/5.2.1/img/champion/'.getSummonerName($recentSummary->fellowPlayers[$i]->championId). '.png"/>';
			}
		}
	}

	if($recentSummary->stats->team == 200)
	{
		echo ' <img width=22 height=22 class="blueTeam" src="http://ddragon.leagueoflegends.com/cdn/5.2.1/img/champion/'.$champName->key. '.png"/>';
	}
	
	for($i = 0; $i < 12; $i++)
	{
		if($recentSummary->fellowPlayers[$i]->teamId)
		{
			if($recentSummary->fellowPlayers[$i]->teamId == 200)
			{
				echo ' <img width=22 height=22 class="redTeam" src="http://ddragon.leagueoflegends.com/cdn/5.2.1/img/champion/'.getSummonerName($recentSummary->fellowPlayers[$i]->championId). '.png"/>';
			}
		}
	}
*/