var switchDisplayedFilter=function(){filter_select=$("select#lstFilter");if(filter_select){$("select.toggle_filter_select").hide();$("select#"+filter_select.val()).show()}};var switchSortDir=function(objEvent){var sort_dir_input=$("#sort_dir_input");if(sort_dir_input){if($(this).hasClass("arrow_1")){cur="0";other="1"}else{cur="1";other="0"}$("#sort_dir_arrow_"+cur).show();$("#sort_dir_arrow_"+other).hide();sort_dir_input.setValue(other)}return false};$(document).ready(function(){$("select#lstFilter").change(switchDisplayedFilter);$("a.sort_dir_arrow").click(switchSortDir)});