diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index f0263d9..c038711 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,5 +1,3 @@
-
-
 Apache Solr Search Integration 7.x-1.0-XXX, xxxx-xx-xx
 ------------------------------
 #1006994 by Nick_vh, wmostrey, pwolanin | webchick: Port Apache Solr Multisite Search to Drupal 7.
diff --git a/README.txt b/README.txt
index 8b13789..e689bac 100644
--- a/README.txt
+++ b/README.txt
@@ -1 +1,24 @@
+This module allows facetting to happen across multiple domains.
+
+1. Enable the module
+
+2. Enabling the environment
+Enable the environment you want (eg.: select multisite support in
+the settings)
+
+3. Existing facets
+All your existing facets will still work but they are indexed using an ID.
+The Solr module also indexed them using their name and this module already ships
+with 3 default multisite enabled facets
+- Tags
+- Authors
+- Content Types (Bundles)
+It also ships with a facet to switch between the sites (Hash/Site)
+
+3. Custom Facets
+Create a custom module that enables extra cross-site facets. In case of a
+a custom vocabulary this will be named sm_vid_NAME. You can view all the fields
+in solr by going to your Drupal reports and select Solr Search Index
+Copy the apachesolr_multisitesearch_facetapi_facet_info into your module and
+get started.
 
diff --git a/apachesolr_multisitesearch.module b/apachesolr_multisitesearch.module
index 10375af..e1678a5 100644
--- a/apachesolr_multisitesearch.module
+++ b/apachesolr_multisitesearch.module
@@ -31,13 +31,24 @@ function apachesolr_multisitesearch_menu() {
  */
 function apachesolr_multisitesearch_facetapi_facet_info($searcher_info) {
   $facets = array();
-
   $facets['hash'] = array(
     'label' => t('Site'),
-    'description' => t('Filter by Site.'),
+    'description' => t('Filter by Site (Multisite).'),
     'field' => 'hash',
     'map callback' => 'apachesolr_multisitesearch_map_hash',
   );
+  // Create a multisite bundle name field
+  $facets['bundle_name'] = array(
+    'label' => t('Content Type'),
+    'description' => t('Filter by content type (Multisite).'),
+    'field' => 'bundle_name',
+  );
+  // Create a multisite facet field
+  $facets['sm_vid_tags'] = array(
+    'label' => t('Tags'),
+    'description' => t('Filter by Tags (Multisite).'),
+    'field' => 'sm_vid_Tags',
+  );
   return $facets;
 }
 
