function poll() {
	ChaCha.ajax.sendRequest(
		'monitor',
		null, 
		'POST', 
		function(response) {}, 
		function() {}, 
		null);
}

$(document).ready(function() {
	setInterval("poll()", ChaCha.consts.AFFINITY_POLL_INTERVAL);
});	