$(document).ready(function() {
	setInterval('keepalive()',600000);
});
function keepalive(){
	$.ajax({url:"keepalive.php"});
}

