// JavaScript Document
$(document).ready(function()
	{
		var pause = 3000;
		var id='';

		function getdata() {
		$.post("http://www.jictechnology.co.uk/serverfeed.php", { "action": "log", "id": id},
   		function(data){
	   		if(data != null)
				{
					id=data[0].id;
					$('#total_count').html(data[0].total)
					/*
					msg = '';
					total = 0;
					id=data[0].id;
					for(i=0;i<data.length;i++) {
						msg = '<li>#'+ data[i].orderid + " - " + data[i].datetime + " - " + data[i].orderno + " - " + data[i].type + "</li>\r\n";
						loadmsg();
					}
					*/
				}
   		}, "json");
		return false;								}
		function loadmsg()
		{
			$('ul#serverfeed').prepend(msg);
						$('ul#serverfeed li:first').hide();
						$('ul#serverfeed li:first').show("slow");
						//$('ul#serverfeed li:last').hide().remove();
		}
		interval = setInterval(getdata, pause);
	});
