// JavaScript Document

function contactFormCheck(){
	if ($("#contactName").val() == "") {
		$(".shritFormError").fadeOut(function() {
			$(".shritFormError").html("Please enter your name");
			$(".shritFormError").fadeIn("fast");
		});		
		return false;
	}
		
	if ($("#contactEmail").val() == "") {
		$(".shritFormError").fadeOut(function() {
			$(".shritFormError").html("Please enter your email address");
			$(".shritFormError").fadeIn("fast");
		});		
		return false;
	}
	
	if($("#contactEmail").val() != ""){
		var emailcheck=$("#contactEmail").val();
		if (emailcheck.indexOf("@")==-1){
			$(".shritFormError").fadeOut(function() {
				$(".shritFormError").html("Please enter a valid email address");
				$(".shritFormError").fadeIn("fast");
			});	
			return false
		}
	}
	
	if ($("#contactTel").val() == "") {
		$(".shritFormError").fadeOut(function() {
			$(".shritFormError").html("Please enter your telephone number");
			$(".shritFormError").fadeIn("fast");
		});		
		return false;
	}
	
	if ($("#contactEnquiry").val() == "") {
		$(".shritFormError").fadeOut(function() {
			$(".shritFormError").html("Please enter your enquiry");
			$(".shritFormError").fadeIn("fast");
		});		
		return false;
	}
}

/* ------------ Below is ran when the page loads  -------------*/

