var tagClosed=1;

$(document).ready(function() {
  if ($('input#login').val() == '') {
    $('input#submitButton').attr('disabled', true);
  }

  $('a#tagOpen').click(function(event) {
    event.preventDefault();
    if (tagClosed) {
      tagClosed=0;
      $('div#chatTag').animate({ "bottom": 0 }, 600);
    }
    else {
      tagClosed=1;
      $('div#chatTag').animate({ "bottom": -150 }, 600);
    }
  });

  $('#submitButton').click(function(event) {
    tagClosed=1;
    $('div#chatTag').animate({ "bottom": -150 }, 600);
  });


  $('input#login').keyup(function(event) {
    if ($(this).val() != '') {
      $('input#submitButton').attr('disabled', false);
    }
    else {
      $('input#submitButton').attr('disabled', true);
    }
  });
});

