var User = Class.extend({
    init: function(options) {
        this.options = $.extend(true, {
        }, options || {});

        this.loggedIn = false;
        this.authenticationMethod = null;
    }
});
var user = new User();
