// JavaScript DocumentjQuery(window).bind("load", function() {			jQuery("div#slider1").codaSlider()			// jQuery("div#slider2").codaSlider()			// etc, etc. Beware of cross-linking difficulties if using multiple sliders on one page.		});<!-- Contact Page Form -->$(function() {	$('.error').hide();	$("#contactForm .button").click(function() {																// Validation										$('.error').hide();				var name = $("input#name").val();          if (name == "") {        $("label#name_error").show();        $("input#name").focus();        return false;      }		var email = $("input#email").val();          if (email == "") {        $("label#email_error").show();        $("input#email").focus();        return false;      }		var comments = $("textarea#comments").val();		var dataString = "name=" + name + '&email=' + email + '&comments=' + comments; 			$.ajax({		type: "POST",		url: "../php/processContact.php",		data: dataString,		success: function()	{			$('#contactForm').html("<div id='message'></div>");			$('#message').html("<h2>Information Processed</h2>")			.append("<p class='response'>We have received your message. Someone will be in touch with you soon. If you don't hear from Airco Sandblasting in 24 hours please contact us at 404.421.3323</p>")			.append("<p class='thankYou'>Thank You " + name + "!</p>")			.hide()			.fadeIn(2000, function() {				$('#message')				.pause(3000)				.fadeIn(0, function() {				$('#contactForm').slideToggle();									   });			});		}		});	return false;		});});<!-- End Contact Form -->