var templateURL='/templates/templates.xml';
var site = "schmap";
var requestT000Exceptions = true;
var defaultLogoPath = '/images/guidelogos/';
var printLogoPath = '/images/guidelogosgif/';
var printMapIconPath = 'mapiconsgif';
var colorApply = false;
var loadingGap = 0.1;

var userPlaceIconsPath = '/images/minitemplate/usericons/';
var trackPage = true;

function Config(dict) {
    /* It's initilized in local_config.js, and set up any properties
     * used in the local site. 
     */
    if(dict) {
        this.items = dict;
    }
    else {
        this.items = {};
    }
}

Config.prototype.get = function (key) {
    return this.items[key];
}

Config.prototype.set = function (key, value) {
    this.items[key] = value;
}

Config.prototype.update = function(dict) {
    MochiKit.Base.update(this.items, dict);
}

config = new Config();
config.set("localInfoUrl", "/webapp/servlet/locallatlong?guide=yes");

config.set("contentNegotiation", true);
config.set("negotiateSuffix", ".var");
//config.set("localInfoUrl", "/webapp/servlet/locallatlong?guide=yes&ip=69.59.165.12");
//config.set("localInfoUrl", "/tests/localgeo.txt");

