window.addEvent( 'domready', function() {
	check = new FormCheck( 'contact_form', {
		display: {
			fadeDuration : 500
		},
		ajax: {
			status: 1,
			func: function() {
				$( 'contact_form' ).send( {
					method: 'post',
					onSuccess: function( res ) {
						msg = Json.evaluate( res );
						alert( msg.msg );
					},
					onFailure: function( res ) {
						alert( 'There was an unexpected error and your request was not completed. Please try again.' );
					}
				});
			}
		}
	})
});

