$().ready(function() {
  $('a[rel="colorbox"]').colorbox({transition:"none"}).hover(function() {
    $(this).parent().after('<div class="description">'+ $(this).attr('title') +'</div>');
  }, function() {
    $(this).parent().next().remove();
  });
  
  $('#login-form .email').focus(function() {
    if ($(this).val() == 'Email') {
      $(this).val('');
    }
  }).blur(function() {
    if ($(this).val() == '') {
      $(this).val('Email');
    }
  });
  
  $('#login-form .password').hide();
  $('#login-form .passfake').show().focus(function() {
    $(this).hide();
    $('#login-form .password').show().focus();

  });

  
});