$(function() {
  $('#top-client-login .tab').click(function() {
    if ($('#top-client-login').css('top') == '0px') {
      $('#top-client-login').animate({ top: -83 }, 300);
      $('#top-client-login .open').removeClass('open');
    } else {
      $('#top-client-login').animate({ top: 0 }, 300);
      $('#top-client-login .tab').addClass('open');
    }
    return false;
  });  
  $('#top-client-login form').submit(function() {
    var username = $(this).find('input.username');
    var password = $(this).find('input.password');
    if (username.val() != '' && password.val() != '') {
      $.post('/', { 'action': 'clientLogin', 'username': username.val(), 'password': password.val() }, function(data) {
        if (data.error != '') {
          alert(data.error);
        } else {
          window.location.href = '/private-gallery';
        }
      }, 'json');
    } else
      alert('Please enter your Username and Password.');
      
    return false;
  });
});
