$(document).ready(function() {

  $('#login').live('click',function() {
    $.post("http://www.shate.ee/ajax_actions/general.php", {action:'login',username:$('#login_username').val(),password:$('#login_password').val()}, function(data) {
      //alert(data.length);
      $("#user_area").hide().html(data).fadeIn('slow');        
    });
  });
  
  $('#logout').live('click',function() {
    $.post("http://www.shate.ee/ajax_actions/general.php", {action:'logout'}, function(data) {
      $("#user_area").hide().html(data).fadeIn('slow');        
    });
  });
  
});
