// orphographic
$(document).ready(function() {
    $('a.forgot-password').click(function(){
        $('.login-form').fadeOut(500);
        setTimeout(function(){
            $('.sendmail .notice').hide();
            $('.sendmail').fadeIn(500);
        },550)
        return false;
    });
    $('a.close-sendmail').click(function(){
        $('.sendmail').fadeOut(500);
        setTimeout(function(){
            $('.login-form').fadeIn(500);
        },550)
        return false;
    });
    $('.sendmail .btn input').click(function(){
        $.post('/accounts/forgot_ajax/',
            {'email': $('#id_forgot_email').val()},
            function(json){
                eval("var data = " + json);
                if (data['response']){
                    $('.sendmail .notice').removeClass('error-notice');
                    $('.sendmail .notice').html(data['response']);
                    $('.sendmail .notice').fadeIn(200);
                }else if (data['error']){
                    $('.sendmail .notice').addClass('error-notice');
                    $('.sendmail .notice').html(data['error']);
                    $('.sendmail .notice').fadeIn(200);
                }
        });
        return false;
    });
});
