;
var communityping_time = 600*1000;

function communityping() {
	return function() {
		var sendData = {
			'tx_communityping[action]' : 'ping'
		};
		$.ajax({
			'type' : "POST",
			'url' : 'index.php?eID=tx_communityping_eid',
			'dataType' : 'json',
			'data' : sendData,
			'success' : function(result) {
				//console.log(result);
			}
		});
		window.setTimeout(communityping(), communityping_time)
	}
}

jQuery(function() {
	window.setTimeout(communityping(), communityping_time);
	//communityping();
});

