(function($) {
	$(document).ready(function() {
		$('div#contactForm form').livequery('submit', function() {
			var self = this;

			$.ajax({
				type: 'post',
				dataType: 'json',
				url: $(self).attr('action'),
				data: $(self).serialize(),
				success: function(data) {
					$(self).displayError({
						ajaxData: data,
						errorImage: '/media/gfx/form/exclaimation.gif',
						onSuccess: function() {
							//
						}
					});
					if(data == true) {
						$('div#contactForm').html('<p><br /><strong>Bedankt voor je bericht. Je krijgt zo snel mogelijk antwoord.</strong></p>');
					}
				},
				error: function(XMLHttpRequest, textStatus, errorThrown) {

				}
			});

			return false;
		});
	});
})(jQuery);