// JavaScript Document	
$(document).ready(function () {	
							
	var optionsContact = { 
			target:        '#contact-form',   // target element(s) to be updated with server response 
			beforeSubmit:  validateContact,  // pre-submit callback 
			success:       showResponse  // post-submit callback 
	
		}; 
	 
	// bind form using 'ajaxForm' 
	$('#ContactForm').ajaxForm(optionsContact);
	
	function validateContact(formData, jqForm, options)  {
		var form = jqForm[0];
		var errors = "";
		var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
		if (!form.name.value) { 		
			errors += "* please enter your name<br />";
		}
		if (reg.test(form.email.value) == false) {
			errors += "* please enter a valid e-mail<br />";
		}
		if (!form.message.value) { 		
			errors += "* please enter a message";
		}
		
		if (errors != "") {
			$('.contact-error').text('');
			$('.contact-error').append(errors);
			$('.contact-error').show();
			return false;
		}
		
	}
	
	function showResponse()  { 
		$('#contact-form').replaceWith("<h5>Your contact request has been submitted.</h5><p>We will get back to you as soon as possible.</p><p>Thank you for considering the House of Kahn Estate Jewelers.</p><p>If you need immediate assistance please call us at 312-943-9937.</p>"); 
		return false;
	}
	
});