$(function() {        
    
	var refreshId = setInterval(function() {
		$.ajax({
		  type: "GET",
		  url: "./config/keep_alive.php"
		});
	}, 60000);

});


