﻿function applyTourTypeFilterStyle(){

    if (window == window.top) {
        jQuery(document).ready(function() {
            ApplyFilterStyles();
        });
    }
    else {
        jQuery(window).load(function() {
            window.setTimeout(ApplyFilterStyles, 1000);
        });
    }

}

function ApplyFilterStyles() {
    var options = {
        maxHeight: typeof _selectListHeight != "undefined" ? _selectListHeight : 0
    };
    jQuery("div.Filter .SelectList").remove();
    jQuery("div.Filter select").selectList(options);
}
