...
diff --git a/README.md b/README.md
index 5d6ab38..7877cbd 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Overview
+# What is it?
 
 This project contains the general-purpose data-binding functionality
 and tree-model for Jackson. It builds on the
@@ -6,8 +6,8 @@
 and uses [Jackson Annotations](/FasterXML/jackson-annotations) for
 configuration
 
-While the original use case was JSON data-binding,
-it can typically be used for other data formats as well, as long as
+While the original use case for Jackson was JSON data-binding,
+it can now be used for other data formats as well, as long as
 parser and generator implementations exist.
 Naming of classes uses word 'JSON' in many places even though there is no
 actual hard dependency to JSON format.
@@ -21,16 +21,11 @@
 * Maven build instead of Ant
 * Java package is now `com.fasterxml.jackson.databind` (instead of `org.codehaus.jackson.map`)
 
+-----
 
-----
+# Get it!
 
-## Usage, general
-
-### Maven, Java package
-
-Functionality of this package is contained in 
-Java package `com.fasterxml.core.databind`.
-To use databinding, you need to use following Maven dependency:
+Functionality of this package is contained in Java package `com.fasterxml.core.databind`, and can be used using following Maven dependency:
 
     <dependency>
       <groupId>com.fasterxml.jackson.core</groupId>
@@ -38,8 +33,8 @@
       <version>2.0.0</version>
     </dependency>
 
-or download jars from Maven repository or [Download page](wiki.fasterxml.com/JacksonDownload).
-Core jar is a functional OSGi bundle, with proper import/export declarations.
+For non-Maven use cases, you download jars from [Central Maven repository](http://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/) or [Download page](jackson-databind/wiki/JacksonDownload).
+Databind jar is also a functional OSGi bundle, with proper import/export declarations, so it can be use on OSGi container as is.
 
 Since package also depends on '''jackson-core''' and '''jackson-databind''' packages, you will need to download these if not using Maven; and you may also want to add them as Maven dependency to ensure that compatible versions are used.
 If so:
@@ -55,7 +50,9 @@
       <version>2.0.0</version>
     </dependency>
 
-----
+-----
+
+# Use It!
 
 ## Usage, simple
 
@@ -73,6 +70,10 @@
 
 (TO BE WRITTEN)
 
+## More?
+
+Check out [15 minute tutorial](jackson-databind/wiki/Jackson15MinuteTutorial) for even more examples.
+
 ----
 
 # Further reading