<!--contact form-->

$(function() {

$(".submit").click(function() {
	var background = '#ffebe8';
	var border ='#dd3c10';
	var message='';
	
    var fvalid=true;
    var name = $("#name").val();
	var email = $("#email").val();
	var enquiry = $("#enquiry").val();
	var telephone = $("#telephone").val();
    var dataString = 'name='+ name + '&email=' + email + '&telephone=' + telephone + '&enquiry=' + enquiry;
	if(name=='' || email=='' || telephone=='' || enquiry=='')
	{
		
	$('.success').fadeOut(200).hide();
	$('.success_message').fadeOut(200).hide();
	
    $('.error').fadeOut(200).show();
	
	
	if (name=='') {
	document.getElementById('name').style.backgroundColor=background; 
	document.getElementById('name').style.borderColor=border;
    }else{
	document.getElementById('name').style.backgroundColor='';
	document.getElementById('name').style.borderColor='';
	}
	
	if (email=='') {
	document.getElementById('email').style.backgroundColor=background; 
	document.getElementById('email').style.borderColor=border;
    }else{
	document.getElementById('email').style.backgroundColor='';
	document.getElementById('email').style.borderColor='';
	}
	
	if (telephone=='') {
	document.getElementById('telephone').style.backgroundColor=background; 
	document.getElementById('telephone').style.borderColor=border;
    }else{
	document.getElementById('telephone').style.backgroundColor='';
	document.getElementById('telephone').style.borderColor='';
	}
	
	if (enquiry=='') {
	document.getElementById('enquiry').style.backgroundColor=background; 
	document.getElementById('enquiry').style.borderColor=border;
    }else{
	document.getElementById('enquiry').style.backgroundColor='';
	document.getElementById('enquiry').style.borderColor='';
	}
	
  
    return false;
	
	}
	
	else
	{
		
	$('.success').fadeOut(200).show();
	$('.success_message').fadeOut(200).show();
	
    $('.error').fadeOut(200).hide();
	
	$.ajax({
	type: "POST",
    url: "send_forms/send_contact.php",
    data: dataString,
    success: function(){
	$('.success').fadeIn(200).show();
	$('#contact_form').fadeOut(200).hide();
    //$('.errorWait').fadeOut(200).hide();
	 //$('.ajaxform').fadeOut(200).hide();	
   }
});
	}
    return false;
	});
});
<!--end contact form-->



