﻿$(document).ready(function () {
    var allWebsites = new Array();
    try {
        allWebsites = bdoWebsites; //uses remote DNSs on BDOInternational.com
    }
    catch (err) {
        allWebsites = bdoWebsitesLocal; //uses Local DNSs found in the BDOInternationalWebsiteAddressesLocal.js
    }

    $('#locationSelector').html('');
    $('<option value="">BDO locations</option>').appendTo('#locationSelector');
    var theDNS = location.host;

    $.each(allWebsites, function (key, data) {
        var thisDataDNS = data.dns;
        var thisDataDNStrimmed = thisDataDNS.slice((thisDataDNS.indexOf('//') + 2), thisDataDNS.length);
        if (thisDataDNStrimmed != theDNS) {
            $('<option value="' + data.dns + '">' + data.country + '</option>').appendTo('#locationSelector');
        };
    });
    //set max height
    $('#locationSelector').sSelect({ ddMaxHeight: '300px' }); //set max height of the drop-down

    $('#locationSelector').change(function () { //onChange then open a new window
        if ($(this).val() != "") {
            window.open($(this).val());
        }
    });


});


