$(document).ready(function() {


//register update progress on jquery ajax calls
  $.ajaxSetup({
  cache: false, 
  beforeSend: function() { $("#ctl00_ctl00_LoadingPanel1_GloblaUpdateProgress").show(); },
  complete: function () { $("#ctl00_ctl00_LoadingPanel1_GloblaUpdateProgress").hide(); }
});


$("#searchcolumn").find(".combobox:last").css("background", "none");

$("ul.level2>li:last").css("border-bottom", "0px solid #fff");
$("ul.level2>li:last").find("ul.level3").css("border-bottom", "0px solid #fff");

});




