/**
 * @author samson aligba
 */
$(document).ready(function(){
					//from validation
					$("#form").validationEngine({
								success :  function(){
								var inputs=[];
									$(":input").each(function(){
										inputs.push(this.name + '=' + escape(this.value));
									
									})
									var daterIn = inputs.join('&');
									//alert(daterIn);
									
									$.ajax({
										type: "POST",
										url: "user_reg.php",
										data: daterIn,
										dataType: "html",
										cache: false,
										success: function(r){
										$("#replybox").html('<strong>Thank you '+r+ '</strong><P class="box"><strong>Simply go to any branch of the bank below and make a deposit of: <span class="alt">=N=4,500</span></strong><h4>Guarantee Trust Bank (GTB)<br>Account Name: <span class="alt">Samson Aligba</span> Account Number:  <span class="alt">412-414-482-1590</span></h4><p>Then send a text message to 08029735939 with your Full name, teller number, full home address, phone number and state of residence. If you are outside Lagos, Please add =N=2,000 for courier. We will send you the package in less than 7 days!</p></P>');
										$("#form").stop().hide().fadeOut(300);
										$("#replybox").show().fadeIn(300);
										},
										error: function(){
											alert("error submiting form");
											return false;
										}
									});
								},
								failure : function() {alert("validation error");}
							});			
return false;
});