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