$(function(){
	update();
});


function update(){
		
	$.ajax({
		type: 'POST',
		url: 'ajax/jackpot.php',
		dataType: 'json',	
		success: function(response){
			
			$('#jackpot').html(response.jackpot);

			setTimeout('update()', 15000);		
		}
	});
}

