$(function()
{
	$(".process-text").hide();
	
	$("#download_file").click(
			function (event){
				$(".process-text").show();
				$("#download_file").hide();
			}
	);
	
});