if (Drupal.jsEnabled) {
  $(document).ready(function () {
      // This needs to be more specific
	  	$(".importer-submit").click(function () {
//	  		$(this).parent();			   
		
			$('<div id="saving">Uploading recipes. Please wait...</div>').insertAfter(".importer-submit");
			
			$(this).parent("input[@type=submit]").hide();
			  // $(this).parent("form[@method=post]").hide();
			$(this).hide();
			$("#saving").show();
		
		   		
		   
		  
	  	});
	  	
	  	
	  	
	  	
	  	
  	});
}
  		
 

