// autoLogin

$(document).ready(function(){
    $("#aL").click(function(e){
     $.get("autologin.php", {set: $("#toggleAutoLogin").val(), js: 1}, function(xml) {                                              
                         $("#toggleAutoLogin").val($("toggle",xml).text());
                         $("#aL").text($("text",xml).text());                          
                     });  
    return false;
      });
    });        
    
// switch onlineState

$(document).ready(function(){
  $("#onlineState").click(function(e){
    $.get("tools/switchOnlineStatus.php", {js: 1}, function(xml){
      $("#onlineState").text($("text", xml).text());
    });
    return false;  
  });
});