// JavaScript Document

  jQuery(document).ready(function($){  
	$('#submit').click(function() {
	
		var name = $('#name').val();
		var phone = $('#phone').val();
		var email = $('#email').val();
		var comments = $('#message').val();
		var string = "" ;
			
		$.ajax({
			url: 'http://newhomessantaclara.com/wp-content/plugins/LeadsManager/submit_to_db.php',
			type: 'POST',
			data: 'name=' + name + '&phone=' + phone + '&email=' + email + '&comments=' + comments,
			
			success: function(result) {
				string = '<p id="response">' + 'Thank you for contacting New Homes Santa Clara' + '</p>' + '</br>' ;
				string = string + '<p id="response">'  + 'We will contact you whithin the next 24 hours to schedule model homes preview. We respect and value your privacy. All your personal information is secure and  confidential.' + '</p>' + '</br>' ;
				string = string + '<p id="response">'  + 'We will contact: <strong>' + result + '</strong></p>' ;
				$('#formcontainer').append(string);
				$('#myform').fadeOut(500, function() {
					$(this).remove();
				});
				
			}
		});
		
		return false;
	});
	
  });


