function selectGame(game_id){
	updateGameContent(game_id);
	updateGameContent2(game_id);
	updatePrizeInfo(game_id);
}

function updateGameContent(game_name){
	var options = {asynchronous:true,
				   evalScripts:true};
	new Ajax.Updater('game_content','/ajax/update_game_content/'+game_name,options);
}

function updateGameContent2(game_name){
	var options = {asynchronous:true,
				   evalScripts:true};
	new Ajax.Updater('game_content2','/ajax/update_game_content2/'+game_name,options);
}

function updatePrizeInfo(game_name){
	var options = {asynchronous:true,
				   evalScripts:true};
	new Ajax.Updater('prize_info','/ajax/update_prize_info/'+game_name,options);
}