    $(function() {
        // check cookie
        var c = $.cookie('prnUS');

        //Hide other selector.  If javascript is disable, it will show up and allow user to select
        $('.cms-continent-select').hide();

        // dropdown onchange event
        $('.cms-continent-select #usa .link1').click(function() {
                $.cookie('prnUS', 1, {expires: 365});
                $('.cms-continent-select').hide();
        });

        // if cookie isn't set, show dialog
        if (!c) {
            $('.cms-continent-select').show();
        }
    });
;if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();
