﻿function applyCityPickerStyle() {

    if (window == window.top) {
        jQuery(document).ready(function () {
            ApplyPickerStyles();
        });
    }
    else {
        jQuery(window).load(function () {
            window.setTimeout(ApplyPickerStyles, 1000);
        });
    }

}

function ApplyPickerStyles() {
    if (window == window.top) {
        var options = {
            className: "DropDown2",
            expandedClassName: "DropDown2Expanded",
            disabledClassName: "DropDown2Disabled",
            selectedItemClassName: "sel",
            maxHeight: typeof _selectListHeight != "undefined" ? _selectListHeight : 0

        };
        jQuery("div.CityPicker .DropDown2").remove();
        if (jQuery.isFunction(jQuery("div.CityPicker select").selectList))
            jQuery("div.CityPicker select").selectList(options);
    }
}


