|  | @@ -84,4 +84,13 @@ $(document).ready(function () {
 | 
	
		
			
				|  |  |        $('#dictionary').html(data);
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  |    });
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  var $loading = $('<div id="loading">Loading...</div>')
 | 
	
		
			
				|  |  | +    .insertBefore('#dictionary');
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  $(document).ajaxStart(function () {
 | 
	
		
			
				|  |  | +    $loading.show();
 | 
	
		
			
				|  |  | +  }).ajaxStop(function () {
 | 
	
		
			
				|  |  | +    $loading.hide();
 | 
	
		
			
				|  |  | +  });
 | 
	
		
			
				|  |  |  });
 |