/*
window.onload = load_ajax();

function load_ajax(){
	xmlhttp= (window.XMLHttpRequest ? new XMLHttpRequest(): ((window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : null) );
	xmlhttp.onreadystatechange=state_change
	xmlhttp.open("POST",'/familystationery/webim/check_help_state_by_ajax.php',false)
	xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
		
	var send_val = "";
	//alert(send_val);
	
 	xmlhttp.send(send_val);
	//alert(xmlhttp.responseText);
	//return (xmlhttp.responseText)
	document.getElementById('live_chat_link').innerHTML = xmlhttp.responseText;
	//window.setTimeout('load_ajax()',1000);
}

function state_change(){
	//alert(xmlhttp.readyState);
	//document.getElementById('live_chat_link').innerHTML = xmlhttp.readyState;
	if (xmlhttp.readyState==4)
	{
		//alert(xmlhttp.responseText);
		//document.getElementById('live_chat_link').innerHTML = xmlhttp.responseText;
		//window.setTimeout('load_ajax()',1000);
	}
}
*/

window.onload = load_ajax();

function load_ajax(){
	$.ajax({
		 type: "POST",
		 url: "/webim/check_help_state_by_ajax.php",
		 data: "",
		 async: true,
		 success: function(msg){
			 //alert(msg);
			 //document.getElementById('live_chat_link').innerHTML = msg;
			 var msg_array = msg.split('||');
			 
			 var live_chat_image = (msg_array[0] != '' ? msg_array[0] : '');
			 var live_chat_txt = (msg_array[1] != '' ? msg_array[1] : '');
			 
			 $("#live_chat_link").html(live_chat_image);
			 $(".live_chat_text").html(live_chat_txt);
			 window.setTimeout('load_ajax()',5000);
		 }
	 });
}