$(document).ready(function(){

//	new AppView();
	var loadTimeout = null;//Used to avoid disturb when fast loadings 
	$("#loading").hide().ajaxStart(function(){
		var e = $(this);
		loadTimeout = setTimeout(function(){
			e.show();
		},1200);
		   
	}).ajaxStop(function(){
		clearTimeout(loadTimeout);
		$(this).hide();
	});
	
	$("button").click(function(){
		var email = $.trim($("input").val());
		if(email.length > 0){
			$.post("/save",{email: email},function(){
				//$("#cont").removeClass("error");
				alert("Ya te hemos apuntado, muchas gracias!");
				
			});
		}else{
			alert("Por favor escribe un correo electrónico");
			//$("#cont").addClass("error");
		}
	});
});

