jQuery(document).ready(function(){
    var num = 1;    
	jQuery('#submit').click(function(){
									 
		if (validate('nombre','correo','compania','telefono','pais','mensaje')){
			
			//jQuery('body').fadeTo('fast', 0.5);	
			send_mail();
		}
		
		
	});	
    
    jQuery('#generar-capcha').click(function(){
        
        var num = Math.random();
        num = num * 1000;
        num = Math.floor(num);
        
		jQuery('#captcha').html('<img id="imag-cap" src="js/captcha.php?id=' + num + '" width="100" height="30" vspace="3" />');
	});
	
	
	jQuery('input').keyup(function(){
		jQuery('#resultado').html('');	
	});
	
	jQuery('#reset').click(function(){
		clean();	
	});
		
});

function send_mail(){
			
	jQuery.ajax({
		type: "post",
		url: "mailer.php",		
		data:({
			Nombre:jQuery('#nombre').val(),
			Email:jQuery('#correo').val(),
			Telefono:jQuery('#telefono').val(),
			Compania:jQuery('#compania').val(),
			Pais:jQuery('#pais').val(),
			Mensaje:jQuery('#mensaje').val(),
			tmptxt:jQuery('#tmptxt').val(),
			receiver:jQuery('#receiver').val(),
			subject:jQuery('#subject').val()
		}),
		success: function(data){
			
			jQuery('body').fadeTo('fast', 1, function(){
				if (data == 0){
					jQuery('#form').html('<div class="boxGracias">Gracias.<br> El formulario ha sido enviado satisfactoriamente.<br> Nos pondremos en contacto muy pronto!.</div>');
					jQuery('#error').css('visibility','hidden');
					//jQuery('#form').css('display','none');
					//jQuery('#resultado').css('display','block');
					clean();
									
				}
				else{
					jQuery('#error').html('<span style="color:#000000; font-size:14px;">' + data + '</span>');
				}				
			});	
			

			
		}	
	});
}

/*function clean(){
	jQuery('#Nombre').val('');
	jQuery('#Email').val('');
	jQuery('#Comentario').val('');
	jQuery('#tmptxt').val('');
}*/
