
$(function()
{$('#login_btn').live('click',function()
{jQuery.facebox({ajax:'/welcome/login_form'});return false;});var prefocus='';$('input').live('focus',function()
{prefocus=$(this).val();if(prefocus=='Your email'||prefocus=='Your password'||prefocus=='Your email address')
$(this).val('');});$('input').live('blur',function()
{if($(this).val()==='')$(this).val(prefocus);});$('#login_form').live('keypress',function(e){if(e.keyCode==13){$('#submit').trigger('click');}});$('#submit').live('click',function()
{$(this).addClass('disabled');$('#error').html('<img src="/assets/img/indicator.gif">');$.ajax({url:'/login/submit',dataType:'json',type:'post',data:$('#login_form_fields').serialize(),success:function(r)
{if(r.sts=='ok')
{$('#login_form_fields').fadeOut('normal',function()
{$('#login_form_fields').remove();$('#login_form').append('<p class="success">You are now being logged in!</p>');});window.location.href='/login/';}
else
{$('#submit').removeClass('disabled');$('#error').html(r.msg);}}});});$('#forgot_pass').live('click',function()
{jQuery.facebox({ajax:'/welcome/forgot_pass_form'});});$('#reset_pass_submit').live('click',function()
{$('#error').html('<img src="/assets/img/indicator.gif">');$.ajax({url:'/login/reset',dataType:'json',type:'post',data:$('#reset_pass_form_fields').serialize(),success:function(r)
{if(r.sts=='ok')
{$('#reset_pass_form_fields').fadeOut('normal',function()
{$('#reset_pass_form_fields').remove();$('#login_form').append('<p class="success">An email with instructions has been sent!</p>');$('#error').hide();});}
else
{$('#submit').removeClass('disabled');$('#error').html(r.msg);}}});return false;});});
