$(function() {$('.error').hide();});$(function() { $(".positive").click(function() { var hasError = false; var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;	 $('.error').hide();				var email = $("input#email").val(); if (email == "") {      $("label#email_error").show();      $("input#email").focus();      hasError = true;      } else if(!emailReg.test(email)) {			$("label#email_error").show();      $("input#email").focus();	hasError = true;		} if(hasError == false) {var dataString = $("#contactph").serialize();	$.ajax({      type: "GET",      url: "p_Ctct.php",      data: dataString,      success: function() {        $('#pc_form').html("<div id='message'></div>");        $('#message').html("<h2>Thank you for your inquiry.</h2>")        .append("<p>We will be in touch soon.</p><p>Before you go, did you check out this season's Elm Street List?</p><p>*If you signed up for email updates, please add &quot;updates@pimlicohome.com&quot; to your address book. <br />Thanks!</p>")        .hide()        .fadeIn(1500, function() {          $('#message').append("<img id='checkmark' src='images/check.png' />");       	});   					}				 });		}    return false;		});});
