var chatPingInterval = 10;
var chatPingID = null;
$(document).ready(function() {
	//clearInterval(chatPingID);
	//chatPingID = setInterval('chatPing();', chatPingInterval*1000);
});

function chatPing() {
	var dt = new Date();
	/*$.get('/?chatPing=1&'+dt.getTime(), null, function(resp) {
		if(typeof resp['msg'] != 'undefined' && resp['msg'] != '') {
			$("#__operMsgOperTxt").html(resp['msg']);
			$("#__operMsg").show();
			setTimeout('$("#__operMsg").hide();', 30*1000);
		}
	}, 'json');*/
}
