http://www.ajaxload.info/ allows you to create a nice bootable gif. Create an image and place it in a div as shown below. Then bind the search button with jQuery to display the hidden div when clicked.
Place the next div where you want the download icon to display.
<div id="loadingDiv" style="display:none"><img src="loading.gif"></div>
Then this is in your javascript file
$(document).ready(){
$('#search').click(function(){
$('#loadingDiv').show();
});
});
, , :
function SomeCallBackEvent(){
$('#loadingDiv').hide();
};