$(document).ready(function() {
            

   $('#serverstatus').everyTime (60000, function(i) {
      var jetzt = new Date();
      $.ajax({ type: "GET",
               url: "radiostatus.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: "hpchat1.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);}
            });		        
   });

  
});  

