$(document).ready( function()
{
  function bindLoginbox()
  {
    $('form.logowanie').submit( function()
    {
      $.post('ajax/login.php', $(this).serialize(), function(data)
      {
        $('div.blok_prawy').html( data );
        if ( top.location.href.indexOf("aktywacja") != -1 || top.location.href.indexOf("rejestracja") != -1 )
        {
          top.location.href="http://www.gadutek.pl/";
        }
        bindLoginbox();
      });
        
      return false;
    });
  };
  
  $('a#logout').click( function()
  {
    $.get('ajax/logout.php', { logout : 'yes' }, function(data)
    {
      $('div.blok_prawy').html( data );
      bindLoginbox();
    });
  });
  
  $('.plus, .minus').click( function()
  {
    var sId = $(this).parent().parent().attr('id');
    $.get('ajax/vote.php', { status : sId, vote : $(this).attr('class') }, function(data)
    {
      if ( data )
        $('#'+sId+' span.vote').html( data ).fadeIn();
      else
        alert("Już dzisiaj oceniałeś/aś ten opis.");
    });
  });
  
  bindLoginbox();
  
  
});