$(document).ready(function() {
	$("#contactForm").validate({
		submitHandler: function(form) {
			jQuery(form).ajaxSubmit({
				success: function (response, type, form) {
					var obj = eval("(" + response + ')') ;
					
					if(obj.success) {
						valid_dialog(LANG.contact_send_confirmation, function () {
							window.location.href = './' ;
						}) ;
					}
					else {
						alert_dialog(obj.errors.reason) ;
					}
				}
			}) ;
		}
	}) ;
});
