$(document).ready(function() {
            

   $('#serverstatus').everyTime (60000, function(i) {
      var jetzt = new Date();
      $.ajax({ type: "GET",
               url: "serverstatus.php?time=" + jetzt.getTime(),
               data: "",
               success: function(req){$('#serverstatus').html(req);}
            });
      $.ajax({ type: "GET",
               url: "serverstatus2.php?time=" + jetzt.getTime(),
               data: "",
               success: function(req){$('#serverstatus2').html(req);}
            });
	  $.ajax({ type: "GET",
               url: "werbung.php?time=" + jetzt.getTime(),
               data: "",
               success: function(req){$('#werbung').html(req);}
            });		
	  $.ajax({ type: "GET",
               url: "hpchat.php?time=" + jetzt.getTime(),
               data: "",
               success: function(req){$('#chatstatus').html(req);}
            });		        
	  $.ajax({ type: "GET",
               url: "willkommen.php?time=" + jetzt.getTime(),
               data: "",
               success: function(req){$('#bilderstatus').html(req);}
            });		        
	  $.ajax({ type: "GET",
               url: "chat/serverstatuss1.php?time=" + jetzt.getTime(),
               data: "",
               success: function(req){$('#hoererstatus').html(req);}
            });		        
/*
	  $.ajax({ type: "GET",
               url: "statususer.php?time=" + jetzt.getTime(),
               data: "",
               success: function(req){$('#userstatus').html(req);}
            });
*/
   });

  
});  

