
			$(function() { 
				$("div.statsshow p").everyTime("5s" , 
				function() {
					$.post("statsFrame.php",{time: "<?=$time?>" },
					function success(data){ 
						$("div.statsshow p").html( data );
					});
				});
			});

			$(function() { 
				$("div.statspoints p").everyTime("3s" , 
				function() {
					$.post("statsPoints.php",{time: "<?=$time?>" },
					function success(data){ 
						$("div.statspoints p").html( data );
					});
				});
			});