$(document).ready(function(){ 	

	
	$("#nvg").click(function(){ 
		$("#freezer").show();
	});
	
	//Cuando es Exitosa el calculo
	$("#loading").ajaxStop(function(){

		$("#freezer").hide();
		$(this).fadeOut(5000);	
		$(this).empty();
    }); 
	
});
