// JavaScript Document

  jQuery(document).ready(function($){  
	$('#schedule').click(function() {
	
		var name = $('#name').val();
		var phone = $('#phone').val();
		var email = $('#email').val();
		var comments = $('#message').val();
		var string = "" ;
			
		$.ajax({
			url: 'http://newhomesfremont.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 Fremont.' + '</p>' + '</br>' ;
				string = string + '<p id="response">'  + 'One of  Arooly Real Estate agents specialized in New Construction in Fremont will contact you whithin the next 24 hours. 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;
	});
	
  });

