jQuery(function() {
    // geo functions provided by maxmind
    // http://j.maxmind.com/app/geoip.js
    var geoFunctions = [
        'geoip_country_code',
        'geoip_country_name',
        'geoip_city',
        'geoip_region',
        'geoip_region_name',
        'geoip_latitude',
        'geoip_longitude',
        'geoip_postal_code'
    ];
    for (var i in geoFunctions) {
        if (typeof window[geoFunctions[i]] == 'function') {
            var text = eval(geoFunctions[i] + '()');
            if (text) {
                $('.' + geoFunctions[i]).text(text);
            }
        }
    }
});