
// scripts

$(document).ready(function(){	

$("form").validationEngine();

	// Feel trial form 
	$("form[name=free_trial]").submit(function(e){
			e.preventDefault();
			$.post(				"/wp-content/themes/writemysitenew/scripts/findoutmore.php",
				{
					name: $("#findmore_name").val(),
					phone: $("#findmore_phone").val(),
					email: $("#findmore_email").val(),
					service: $("#findmore_service").val(),
					type: $("#formtype").val()
				},
				function(data){
					if(data=="Success"){
						$(".trial_form").html("<p style=\"margin-top: -15px\">Thank you for your interest. You will receive more information shortly.</p>");
					}
					else{
						$(".trial_form").prepend(); 
					}
				});
			return false;
		});


	// Contact form 
	$("#contact_footer_submit").click(function(e){
			e.preventDefault();
			$.post(
				"/wp-content/themes/writemysitenew/scripts/contactus.php",
				{
					name: $("#contact_footer_name").val(),
					company: $("#contact_footer_company").val(),
					phone: $("#contact_footer_phone").val(),
					email: $("#contact_footer_email").val(),
					message: $("#contact_footer_message").val()
				},
				function(data){
					if(data=="Success"){
						$(".footer_form").html("<p style=\"color: #fff;\">Thank you for your enquiry. We will get back to you as soon as possible.</p>");
					}
					else{
						$(".footer_form").prepend(); 
					}
				}
			)
			return false;
		});







});
