/* save score to database and print total score for the day */
function gameLog(score, gameID) {
	var totalScore = $.ajax({
		url: "programs/game-log.php",
		data: "score="+score+"&gameID="+gameID,
		type: "POST",
  		async: false
 	}).responseText;


	var userScore = totalScore.split('_');

	/* $('#game-score').html('<b>'+userScore[0]+'</b>'); */
	$('#total-score').html('<b>'+userScore[1]+'</b>');
}





/* get converter arrow description */
function getMCDesc(desc) {
	var resultStr = $.ajax({
		url: "programs/mc-desc.php",
		data: "desc="+desc,
		type: "POST",
  		async: false
 	}).responseText;

	$('#mc-desc').html(resultStr).css('display','block');
}


