	$(document).ready(function(){	

		// Request Callback Footer
		$("#callback_submit").click(function(e){
			e.preventDefault();
			$.post(
				"/assets/php/callback_submit.php",
				{
					name: $("#your_name").val(),
					number: $("#your_number").val()
				},
				function(data){
					if(data=="Success"){
						$(".callbackwrap").html("<p style=\"color: #fff;\">Thank you for your interest. <br />We will be in touch shortly.</p>");
					}
					else{
						
					}
				}
			)
			return false;
		});
	});
