$(document).ready(function() { 
		  			
//		search_button		 hide .search  show .download


		
			$(".search_button").click(
			  function () {
				
				
				$('.search').hide();
				$('.download').show();
				$('.download .catcher').hide();
				setTimeout( function()
				  {
					 $('.load').hide();
					 $('.download .catcher').fadeIn(); 
				  }, 2000);
				return(false);

				
				
				
				
				
			  });	

			
					
});


	
			


		

