

$(document).ready(function(){

	jQuery("#sidebarContact").validate({
		submitHandler: function(form) {
			jQuery(form).ajaxSubmit({
				success: function (response) {
					$('#sidebarContact').fadeOut('slow', function(){$('#sidebarContactContainer').html(response)});
				},
				type: 'post'
			});
		}
	});
	
	jQuery("#intextContact").validate({
		submitHandler: function(form) {
			jQuery(form).ajaxSubmit({
				success: function (response) {
					$('#intextContact').fadeOut('slow', function(){$('#intextContactContainer').html(response)});
				},
				type: 'post'
			});
		}
	});
	
	jQuery("#locatorForm").validate({
		submitHandler: function(form) {
			jQuery(form).ajaxSubmit({
				success: function (response) {
					$('#locatorForm').fadeOut('slow', function(){$('#locatorFormContainer').html(response)});
				},
				type: 'post'
			});
		}
	});
	
});