/*
	Coded by PM @ greenLABS Mx
	 Feb 2010
*/


$(function(){
	$("input#submit").click(function(){
		var name = $("input#nombre").val();
		var tel = $("input#tel").val();
		var email = $("input#email").val();
		var comment = $("textarea#comments").val();
		
		$.post("php/mailPost.php", { name: name, tel: tel, email: email, comment: comment }, function(){
			$("input#submit").attr('disabled', 'disabled');
			$("form#contactForm").fadeOut(2000, function(){
				$("h1#thanks").fadeIn(1000);
			});
		});
	});
});
