var tpcurrency = '$';
var tpjackpots = new Array(6);
tpjackpots['monstermadnessjackpot'] = "1,528,998.92";
tpjackpots['bingojackpot'] = "1,060,970.72";
tpjackpots['starsandstripesjackpot'] = "958,494.69";
tpjackpots['total'] = "3,548,464.33";
function topgamejackpot(name) {
	var elem = document.getElementById(name);
	elem.innerHTML = tpcurrency + tpjackpots[name];
}