$(document).ready(function(){     	$("#expressApptForm label#fullNameLabel, #expressApptForm label#emailLabel, #expressApptForm label#phoneNumberLabel").inFieldLabels();			$(".startTour").lightbox();		$(".startTour").click(function() {		setTimeout(function() {			autoPlay();		}, 5000);	});		   $('#expressApptSubmit').click(function() {		   _gaq.push(['_trackPageview', '/Form-Submited-Express']);   })		   	$("input").focus(function() {		$(this).addClass('active');		$(this).siblings().addClass('active');	});		$("input").blur(function() {		$(this).removeClass('active');		$(this).siblings().removeClass('active');	});		var valName = new LiveValidation('fullName', { validMessage: " " });	valName.add(Validate.Presence, { failureMessage: "Please enter your full name." });			var valEmail = new LiveValidation('email', { validMessage: " " });	valEmail.add(Validate.Presence, { failureMessage: "Please enter your email address." });	valEmail.add(Validate.Email, { failureMessage: "Please enter a valid email address." });	var valPhone = new LiveValidation('phoneNumber', { validMessage: " " });	valPhone.add(Validate.Presence, { failureMessage: "Please enter your phone number." });			$("#expressApptForm").submit(function(event) {		event.preventDefault();		if (LiveValidation.massValidate([valName,valPhone,valEmail])) {			$("#expressApptForm").fadeOut();			$("#formProcessingWrapper").fadeIn();			$.post("/appointment/process-express.php", $("#expressApptForm").serialize(), function (data, textStatus) {				//$("#formProcessingWrapper").fadeOut();				if (data == "1") {					//$("#success").show();					window.location = "/appointment/thankyou.shtml";				} else {					$("#formSubmitErrorWrapper").fadeIn();				}			});		}	});			});function openSizedWindow(url, w, h, name) {	if (!name) name = 'newWindow';	var win = window.open(url,name,'toolbar=no,menubar=no,scrollbars=no,resizable=no,width=' + w + ',height=' + h);    if (win != null) {        win.focus();    }    return win;}
