function auto_login(auth_hash){		
    window.location = '/site/general/auto_login/'+auth_hash;
}

function view_email(email){		
    window.location = '/html_email/view/2011-email_'+email;
}
    

$(document).ready(function() {
    
    $('#login-help').hide();

    $('#trouble-logging-in').click(function(){
        $(this).next().toggle(250);
        return false;
    });
    
});
