diff --git a/redhen.module b/redhen.module
index 81d439c..13bd8fe 100644
--- a/redhen.module
+++ b/redhen.module
@@ -42,6 +42,20 @@ function redhen_menu() {
 }
 
 /**
+ * Implements hook_admin_menu_output_alter().
+ *
+ * Add RedHen to the admin menu.
+ */
+function redhen_admin_menu_output_build(&$content) {
+  $content['menu']['redhen'] = array(
+    '#title' => t('RedHen'),
+    '#attributes' => array('class' => array('redhen')),
+    '#href' => 'redhen',
+    '#weight' => -3,
+  );
+}
+
+/**
  * Implements hook_permission().
  */
 function redhen_permission() {
