 .../facebook_you_share/facebook_you_share.info        |  2 ++
 .../facebook_you_share/facebook_you_share.module      | 19 ++++++++++++++-----
 .../includes/facebook_you_share.admin.inc             |  1 -
 3 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/html/sites/all/modules/facebook_you_share/facebook_you_share.info b/html/sites/all/modules/facebook_you_share/facebook_you_share.info
index 887f908..2e74838 100644
--- a/html/sites/all/modules/facebook_you_share/facebook_you_share.info
+++ b/html/sites/all/modules/facebook_you_share/facebook_you_share.info
@@ -3,6 +3,8 @@ description = A developer friendly Module for Facebook share, which provides the
 core = 7.x
 package = Social Networking
 dependencies[] = token
+configure = admin/config/social-networking/facebook-you-share
+
 ; Information added by drupal.org packaging script on 2012-09-27
 version = "7.x-2.0-rc2"
 core = "7.x"
diff --git a/html/sites/all/modules/facebook_you_share/facebook_you_share.module b/html/sites/all/modules/facebook_you_share/facebook_you_share.module
index ba0d8ec..bb7047a 100644
--- a/html/sites/all/modules/facebook_you_share/facebook_you_share.module
+++ b/html/sites/all/modules/facebook_you_share/facebook_you_share.module
@@ -12,11 +12,11 @@ function facebook_you_share_permission() {
   return array(
     'Share on Facebook' => array(
       'title' => t('Share on Facebook'),
-      'description' => t('@TODO Add a description for \'Share on Facebook\''),
+      'description' => t('Enable role to view and use the share posting capability provided by the \'Share on Facebook\' module'),
     ),
     'administer Facebook share settings' => array(
       'title' => t('administer Facebook share settings'),
-      'description' => t('@TODO Add a description for \'administer Facebook share settings\''),
+      'description' => t('Enable role to view and use the share posting capability supplied byEnable role to view and use the share posting capability supplied by the \'Share on Facebook\' module.'),
     ),
   );
 }
@@ -28,7 +28,16 @@ function facebook_you_share_permission() {
  */
 function facebook_you_share_menu() {
   $items = array();
-  $items['admin/config/facebook-you-share'] = array(
+  $items['admin/config/social-networking'] = array(
+      'title' => 'Social Networking',
+      'description' => 'Settings related to social networking modules.',
+      'position' => 'left',
+      'weight' => 0,
+      'page callback' => 'system_admin_menu_block_page',
+      'access arguments' => array('access administration pages'),
+      'file' => '../../../../modules/system/system.admin.inc',
+    );
+  $items['admin/config/social-networking/facebook-you-share'] = array(
     'title' => 'Facebook You Share',
     'page callback' => 'facebook_admin',
     'page arguments' => array('general'),
@@ -38,13 +47,13 @@ function facebook_you_share_menu() {
   );
 
   // General Settings to associate with the facebook sharing
-  $items['admin/config/facebook-you-share/general'] = array(
+  $items['admin/config/social-networking/facebook-you-share/general'] = array(
       'title' => 'General Settings',
       'type' => MENU_DEFAULT_LOCAL_TASK,
   );
 
   // Advanced Settings to customize the facebook share details for every content type
-  $items['admin/config/facebook-you-share/advanced'] = array(
+  $items['admin/config/social-networking/facebook-you-share/advanced'] = array(
       'title' => 'Advanced Settings',
       'page callback' => 'facebook_admin',
       'page arguments' => array('advanced'),
diff --git a/html/sites/all/modules/facebook_you_share/includes/facebook_you_share.admin.inc b/html/sites/all/modules/facebook_you_share/includes/facebook_you_share.admin.inc
index 33679ee..131b289 100644
--- a/html/sites/all/modules/facebook_you_share/includes/facebook_you_share.admin.inc
+++ b/html/sites/all/modules/facebook_you_share/includes/facebook_you_share.admin.inc
@@ -16,7 +16,6 @@ function facebook_admin($settings = 'general') {
   // Getting the active/user selected content types from the General Settings
   $active_types = variable_get('fb_content_types', array());
   $active_types = array_filter($active_types);
-  print '<pre>';print_r($active_types);print'</pre>';exit;
   if (is_array($types)) {
     // If there are active content types create and render the general and advanced settings accordingly.
     if (count($types) > 0) {
