
var Config = function() {
    //var host = "http://localhost:47801/cheezyweezy";
    //var host = "http://www.cheezyweezy.com:8080/cheezyweezy";
    var host = "/";
    var mustLoginToVote = true;

    return {
        getURL: function(fragment) {
            return [host, fragment].join('');
        },
        requireLoginToVote: function () {
            return mustLoginToVote;
        },
        loggedIn: function() {
          
            return false;
          
        },
        commentsEnabled: function() {
          return true;
        },
        commentVotesEnabled: function() {
          return false;
        }
    };
}();