﻿$(function () {
    if (google.loader.ClientLocation) {
        var country = google.loader.ClientLocation.address.country_code;
        var name = google.loader.ClientLocation.address.country;

        switch (country) {
            case 'AR':
            case 'BO':
            case 'CA':
            case 'CL':
            case 'CO':
            case 'CR':
            case 'DO':
            case 'ES':
            case 'FR':
            case 'GT':
            case 'HN':
            case 'MX':
            case 'PA':
            case 'PE':
            case 'PR':
            case 'PY':
            case 'SV':
            case 'US':
            case 'UY':
            case 'VE':
                $('#locationFlag').html('<img src="/images/flags/' + country + '.png" alt="' + name + '" />');
                break;
        }
    }
});
