try to hide /show progress bar on states of ajax request, please check through this code :
jQuery(document).ajaxSend(function(){
jQuery("#loading-mask").show();
});
jQuery(document).ajaxComplete(function(){
jQuery("#loading-mask").hide();
});
remove that $('#ajaxindicator').show(); from your code
Chirag
2010-04-26 11:51:40