diff --git a/doc/reference/src/index.xml b/doc/reference/src/index.xml
index 8b5e55be..a366ff67 100644
--- a/doc/reference/src/index.xml
+++ b/doc/reference/src/index.xml
@@ -41,6 +41,7 @@
+
@@ -375,6 +376,9 @@
+
+
+
@@ -396,6 +400,7 @@
&springair;
&data-quickstart;
&tx-quickstart;
+ &nh-quickstart;
&quartz-quickstart;
&nms-quickstart;
&msmq-quickstart;
diff --git a/doc/reference/src/nh-quickstart.xml b/doc/reference/src/nh-quickstart.xml
new file mode 100644
index 00000000..a1113167
--- /dev/null
+++ b/doc/reference/src/nh-quickstart.xml
@@ -0,0 +1,52 @@
+
+
+
+ NHibernate QuickStart
+
+
+ Introduction
+
+ This QuickStart application uses the all too familiar Northwind
+ database and uses NHibernate browse and edit customers. It It is a very
+ simple application that directly uses the DAO layer in some cases and also
+ has a simple service layer that simulated a fullillment process. See the
+ integration tests as well for insight into how it works. The application
+ uses Spring's declarative transaction management features,
+ HibernateTemplate helper class, and Open Session In View module. The
+ example will be updated to not use HibernateTemplate and instead use the
+ standard NHibernate API in a future release. All functionality is still
+ present when using the standard NHibernate API, as Spring transaction
+ managment is integrated into NHibernate extension points and exception
+ translation is provided by AOP advice. See the section titled Implementing
+ DAOs based on plain Hibernate 1.2/2.0 API" in the hibernate orm section of
+ the reference docs for more information.To run the application
+ make the Web application
+ the project that starts and set Default.aspx as the start page. You will
+ see a list of customers. If you select 'edit' then you can edit some
+ customer info and save it by pressing the save button. Note that you will
+ need to explicitly navigate back to the Default.aspx page and reload it in
+ order to see the changes.
+
+
diff --git a/doc/reference/src/overview.xml b/doc/reference/src/overview.xml
index e7dabb1f..7a9bf865 100644
--- a/doc/reference/src/overview.xml
+++ b/doc/reference/src/overview.xml
@@ -302,7 +302,7 @@
- NHibernate Northwind: Demonstrates use of Spring's NHibernate
+ NHibernate Northwind: Demonstrates use of Spring's NHibernate
integration to simplify the use of NHibernate. Web tier is also
included showing how to use the Open-Session In View approach to
session management in the web tier.