function startChat()
{
	window.autoStart = setInterval(function()
	{
		if (window.Cobrowser != null && cbQuery(".cb_online").css("display") == "block")
		{
			cbQuery.ajax(
			{
				type: 'post',
				dataType: 'json',
				url: window.Cobrowser.handler_url,
				data:
				{
					action: 'assign_to',
					agent: false,
					group: false,
					exclude: false
				}
			});

			cbQuery(".cb_active").show();
			cbQuery(".cb_online").hide();

			window.clearInterval(window.autoStart);
		}
	}, 1000);
}

startChat();
