$(document).ready(function(){
	$('#submit.active').click(function(){
		//clear input error
		$('input').removeClass('input-error');
		
		//variables
		nom = $.trim($('#nom').val());
		telephone = $('#telephone').val();
		
		//validation
		var phone_reg = /^(1\s*[-\/\.]?)?(\((\d{3})\)|(\d{3}))\s*[-\/\.]?\s*(\d{3})\s*[-\/\.]?\s*(\d{4})\s*(([xX]|[eE][xX][tT])\.?\s*(\d+))*$/;
	
		if (nom.length < 3) { $('#nom').addClass('input-error').focus(); return false; }
		if (!phone_reg.test(telephone)) { $('#telephone').addClass('input-error').focus(); return false; }
		
		//prevent double post
		$(this).removeClass('active');
		
		//create data string
		send_data = 'type=essai_gratuit' +
					'&nom=' + nom +
					'&telephone=' + telephone;
		
		
		$.post('/actions.php', send_data, function(data){
			// success
			if (data == '200') {
				box_height = $('.form').height();
				$('.form').html('<div class="envoye">Merci de votre intérêt.</div>').height(box_height).css('line-height', box_height+'px');
			} 
		});
		
		return false;
	});
});
