$(document).ready(function() {
  //Client login animations
  $('#client-login').removeClass('unanimated');
  
  $('#client-login .open a').hover(function() {
    $('#client-login li').slideDown();
    
    $('<div/>').addClass('full-page-overlay').appendTo($('body')).hover(function() {
      $('#client-login li').not('.open').slideUp();
      $(this).remove();
    });
  });
  
  //Staff bio animations
  $('.staff .bio-text').hide();
  
  $('.staff .bio-more').live('click',function() {
    if(!$(this).hasClass('close')) {
      $(this).text('- Close').addClass('close');
      
      target=$(this).parent().children('.bio-text');
      
      $('.staff .bio-text').not(target).parent().children('.bio-more').text('+ More Info').removeClass('close');
      $('.staff .bio-text').not(target).slideUp();
      
      
      target.show();
      height=target.height();
      target.css('height',0).animate({height:height},{duration:500});
    }
    else {
      $(this).text('+ More Info').removeClass('close');
      $(this).parent().children('.bio-text').slideUp();
    }
    return false;
  });
  
  $('.staff .bio').show();
});

