
function getRecentPerformances(gameTitle)
{
	//set default values whenever game selection changes
	game = gameTitle;
	
	$.post("/application/services/agora/client/recentPerformancesApi.php", { action: profileType, ucd : ucd, game: game }, function(response) {
		$("#profileRecentPerformances").html(response.html1);
		$("#profileRecentBandPerformances").html(response.html2);
	},'json');
}
	
$(document).ready(function(){
	
	getRecentPerformances(game);
	
});