diff --git a/browscap.module b/browscap.module
index e055616..8b919b6 100644
--- a/browscap.module
+++ b/browscap.module
@@ -77,6 +77,22 @@ function browscap_menu() {
 }
 
 /**
+ * Implements hook_help().
+ */
+function browscap_help($path, $arg) {
+  switch ($path) {
+    case 'admin/config/system/browscap':
+      return '<p>' . t('Settings for user agent detection and the log that Browscap will keep about user agents that visit the site. See <a href="@statistics">user agent statistics</a> for the actual information.', array('@statistics' => url('admin/reports/browscap'))) . '</p>';
+    case 'admin/reports/browscap':
+      return '<p>' . t('This page displays the most popular visiting user agents.') . '</p>';
+    case 'admin/reports/browscap/browsers':
+      return '<p>' . t('This page displays the most popular visiting user agents which have been classified as browsers.') . '</p>';
+    case 'admin/reports/browscap/crawlers':
+      return '<p>' . t('This page displays the most popular visiting user agents which have been classified as crawlers.') . '</p>';
+  }
+}
+
+/**
  * Implements hook_exit().
  */
 function browscap_exit() {
