var tpcurrency = '$';
var tpjackpots = new Array(6);
tpjackpots['starsandstripesjackpot'] = "934,535.87";
tpjackpots['monstermadnessjackpot'] = "896,092.41";
tpjackpots['bingojackpot'] = "596,207.43";
tpjackpots['total'] = "2,426,835.71";
function topgamejackpot(name) {
	var elem = document.getElementById(name);
	elem.innerHTML = tpcurrency + tpjackpots[name];
}