jQuery(function($){

	$('form').submit(function(){

		var $this = $(this);
		
		$('input.error, textarea.error').removeClass('error');
		$('#errors').html('');
		$.post('/contact',$this.serializeArray(),function(data){
			
			if (!data.success)
			{
				var errors = [];
				for(var p in data.errors)
				{
					$('[name="'+p+'"]').addClass('error');
					errors.push("<li>"+data.errors[p]+"</li>");
				}
				$('#errors').html("<ul>"+errors.join("")+"</ul>");
				
				$('html').animate({'scrollTop':$('#errors').offset().top-100},250);

			}
			else
			{
				$this.find('table').replaceWith("<p class='thankyou'>Thank you for your enquiry. I will get back to you as soon as possible.</p>");
			}
		
		},'json')
		
		return false;
		
	});//.submit();


});
